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

Commit 2415dfd7 authored by Evan Laird's avatar Evan Laird Committed by Automerger Merge Worker
Browse files

Merge "SystemUI: Fix signal bar icon overlay issue" am: ad9993d5 am:...

Merge "SystemUI: Fix signal bar icon overlay issue" am: ad9993d5 am: b38d7f3d am: 6fb94e50 am: cde55d30

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2008755

Change-Id: Id9e3a35ef67ccbcb1e3746da90dc0eff38487c97
parents 158151cf cde55d30
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -188,7 +188,7 @@ public class StatusBarMobileView extends FrameLayout implements DarkReceiver,

        setContentDescription(state.contentDescription);
        int newVisibility = state.visible && !mForceHidden ? View.VISIBLE : View.GONE;
        if (newVisibility != mMobileGroup.getVisibility()) {
        if (newVisibility != mMobileGroup.getVisibility() && STATE_ICON == mVisibleState) {
            mMobileGroup.setVisibility(newVisibility);
            needsLayout = true;
        }