Skip to content

Commit

Permalink
SystemUI: Fix QS mobile icon disappearing on theme switch
Browse files Browse the repository at this point in the history
When there is only single SIM, the signal icon disappears
from expanded QS header on switching dark theme QS tile.
Ensure that the signal icon is always shown on single SIM.

Change-Id: I089731fe5815a0b2bcbbed1002ca65aa5d3301cd
Signed-off-by: Adithya R <gh0strider.2k18.reborn@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
  • Loading branch information
ghostrider-reborn authored and neobuddy89 committed Jul 2, 2022
1 parent 90f5534 commit 81e57f6
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -233,6 +233,9 @@ void onAttach(TintedIconManager iconManager,

void setIsSingleCarrier(boolean isSingleCarrier) {
mIsSingleCarrier = isSingleCarrier;
if (mIsSingleCarrier) {
mIconContainer.removeIgnoredSlots(mRssiIgnoredSlots);
}
updateAlphaAnimator();
}

Expand Down

0 comments on commit 81e57f6

Please sign in to comment.