Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ffef53ec authored by Ana Salazar Maldonado's avatar Ana Salazar Maldonado Committed by Android (Google) Code Review
Browse files

Merge "Fix condition for showing contraste tile" into main

parents 400fc4ad 1e392d66
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -980,7 +980,7 @@ public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver,
    public boolean shouldDrawAppContrastTile() {
        return mDisplay == DISPLAY_WORKSPACE && shouldTextBeVisible()
                && PillColorProvider.getInstance(getContext()).isMatchaEnabled()
                && enableContrastTiles() && TextUtils.isEmpty(getText());
                && enableContrastTiles() && !TextUtils.isEmpty(getText());
    }

    public void setTextVisibility(boolean visible) {