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

Commit f36823cf authored by Adrian Roos's avatar Adrian Roos Committed by android-build-merger
Browse files

Keyguard: only show after screen fully turned off am: 4757c8cc am: 7f0c9be1

am: 67be3b03

Change-Id: I2849184727c193b42c6e42a13cbb64973f8bc2f0
parents c6fdb5c8 67be3b03
Loading
Loading
Loading
Loading
+7 −5
Original line number Original line Diff line number Diff line
@@ -4210,10 +4210,7 @@ public class StatusBar extends SystemUI implements DemoMode,


    public void showKeyguard() {
    public void showKeyguard() {
        mKeyguardRequested = true;
        mKeyguardRequested = true;
        // Unconditionally show keyguard again. There's some logic that relies on this
        updateIsKeyguard();
        // being called even when the keyguard is already showing, e.g. for updating
        // sensitiveness of notifications and making sure the panels are expanded.
        showKeyguardImpl();
    }
    }


    public boolean hideKeyguard() {
    public boolean hideKeyguard() {
@@ -4233,7 +4230,12 @@ public class StatusBar extends SystemUI implements DemoMode,
            updatePanelExpansionForKeyguard();
            updatePanelExpansionForKeyguard();
        }
        }
        if (shouldBeKeyguard) {
        if (shouldBeKeyguard) {
            if (isGoingToSleep()
                    && mScreenLifecycle.getScreenState() == ScreenLifecycle.SCREEN_TURNING_OFF) {
                // Delay showing the keyguard until screen turned off.
            } else {
                showKeyguardImpl();
                showKeyguardImpl();
            }
        } else {
        } else {
            return hideKeyguardImpl();
            return hideKeyguardImpl();
        }
        }