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

Commit 2c22293c authored by Evan Laird's avatar Evan Laird Committed by android-build-merger
Browse files

Merge "Hide status bar icons if showing bouncer on keyguard activity" into pi-dev am: 5cfe787d

am: 7c526756

Change-Id: I763a7b9e06c54352b60d34daae13af5f5dafa524
parents 7822ebba 7c526756
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -2090,7 +2090,8 @@ public class StatusBar extends SystemUI implements DemoMode,
     * @param animate should the change of the icons be animated.
     * @param animate should the change of the icons be animated.
     */
     */
    private void updateHideIconsForBouncer(boolean animate) {
    private void updateHideIconsForBouncer(boolean animate) {
        boolean hideBecauseApp = mTopHidesStatusBar && mIsOccluded && mStatusBarWindowHidden;
        boolean hideBecauseApp = mTopHidesStatusBar && mIsOccluded
                && (mStatusBarWindowHidden || mBouncerShowing);
        boolean hideBecauseKeyguard = !mPanelExpanded && !mIsOccluded && mBouncerShowing;
        boolean hideBecauseKeyguard = !mPanelExpanded && !mIsOccluded && mBouncerShowing;
        boolean shouldHideIconsForBouncer = hideBecauseApp || hideBecauseKeyguard;
        boolean shouldHideIconsForBouncer = hideBecauseApp || hideBecauseKeyguard;
        if (mHideIconsForBouncer != shouldHideIconsForBouncer) {
        if (mHideIconsForBouncer != shouldHideIconsForBouncer) {