Update theme after overlay

KeyguardStatusBarView needs to get a theme update after an overlay
change, because the textAppearance that we update the carrier text view
with will overwrite the color that we want to apply if we do things in
the other order

Fixes: 200822200
Test: visual
Change-Id: I528c7df8e440c1870b0d12df878b3027f6b1f3e2
This commit is contained in:
Evan Laird
2021-09-30 22:43:06 +00:00
parent 7efbb60d22
commit 83b3df527a

View File

@@ -101,8 +101,8 @@ public class KeyguardStatusBarViewController extends ViewController<KeyguardStat
@Override
public void onOverlayChanged() {
KeyguardStatusBarViewController.this.onThemeChanged();
mView.onOverlayChanged();
KeyguardStatusBarViewController.this.onThemeChanged();
}
@Override