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

Commit 1f3b3a0d authored by Matías Hernández's avatar Matías Hernández Committed by Android (Google) Code Review
Browse files

Merge "Don't set non-FIXED_SPACE StatusBarIconViews to CENTER" into main

parents f2e430cd b8b96b5e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -415,8 +415,8 @@ public class StatusBarIconView extends AnimatedImageView implements StatusIconDi
        if (!levelEquals) {
            setImageLevel(icon.iconLevel);
        }
        if (usesModeIcons()) {
            setScaleType(icon.shape == Shape.FIXED_SPACE ? ScaleType.FIT_CENTER : ScaleType.CENTER);
        if (usesModeIcons() && icon.shape == Shape.FIXED_SPACE) {
            setScaleType(ScaleType.FIT_CENTER);
        }
        if (!visibilityEquals) {
            setVisibility(icon.visible && !mBlocked ? VISIBLE : GONE);