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

Commit 9f33d6cb authored by Adrian Roos's avatar Adrian Roos
Browse files

Fix stuck orientation in SetupWizard

Bug: 21755092
Change-Id: I3144a81523ce2ef4bf6dc457c0ea4b9723dae489
parent fa4b7fb8
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -371,7 +371,6 @@ public class KeyguardViewMediator extends SystemUI {
        @Override
        public void onDeviceProvisioned() {
            sendUserPresentBroadcast();
            updateInputRestricted();
        }

        @Override
@@ -947,7 +946,7 @@ public class KeyguardViewMediator extends SystemUI {
     * was suppressed by an app that disabled the keyguard or we haven't been provisioned yet.
     */
    public boolean isInputRestricted() {
        return mShowing || mNeedToReshowWhenReenabled || shouldWaitForProvisioning();
        return mShowing || mNeedToReshowWhenReenabled;
    }

    private void updateInputRestricted() {