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

Commit 05329bb4 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Hide windows even when AOD is off"

parents e026b408 5a4f92c2
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2103,6 +2103,9 @@ public class KeyguardViewMediator extends SystemUI {
        pw.print("  mDrawnCallback: "); pw.println(mDrawnCallback);
    }

    /**
     * @param aodShowing true when AOD - or ambient mode - is showing.
     */
    public void setAodShowing(boolean aodShowing) {
        setShowingLocked(mShowing, aodShowing);
    }
+1 −2
Original line number Diff line number Diff line
@@ -4733,7 +4733,6 @@ public class StatusBar extends SystemUI implements DemoMode,
        boolean dozing = mDozingRequested && mState == StatusBarState.KEYGUARD
                || mBiometricUnlockController.getMode()
                        == BiometricUnlockController.MODE_WAKE_AND_UNLOCK_PULSING;
        final boolean alwaysOn = DozeParameters.getInstance(mContext).getAlwaysOn();
        // When in wake-and-unlock we may not have received a change to mState
        // but we still should not be dozing, manually set to false.
        if (mBiometricUnlockController.getMode() ==
@@ -4742,7 +4741,7 @@ public class StatusBar extends SystemUI implements DemoMode,
        }
        if (mDozing != dozing) {
            mDozing = dozing;
            mKeyguardViewMediator.setAodShowing(mDozing && alwaysOn);
            mKeyguardViewMediator.setAodShowing(mDozing);
            mStatusBarWindowManager.setDozing(mDozing);
            mStatusBarKeyguardViewManager.setDozing(mDozing);
            if (mAmbientIndicationContainer instanceof DozeReceiver) {