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

Commit d9f1a0c3 authored by Selim Cinek's avatar Selim Cinek Committed by Android (Google) Code Review
Browse files

Merge "Fixed wake to unlock when the device has never been unlocked" into mnc-dev

parents f3255489 ad7310f0
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -460,15 +460,20 @@ public class KeyguardViewMediator extends SystemUI {

        @Override
        public void onFingerprintAuthenticated(int userId, boolean wakeAndUnlocking) {
            boolean unlockingWithFingerprintAllowed =
                    mUpdateMonitor.isUnlockingWithFingerprintAllowed();
            if (mStatusBarKeyguardViewManager.isBouncerShowing()) {
                if (mUpdateMonitor.isUnlockingWithFingerprintAllowed()) {
                if (unlockingWithFingerprintAllowed) {
                    mStatusBarKeyguardViewManager.notifyKeyguardAuthenticated();
                }
            } else {
                if (wakeAndUnlocking) {
                if (wakeAndUnlocking && unlockingWithFingerprintAllowed) {
                    mWakeAndUnlocking = true;
                    keyguardDone(true, true);
                } else {
                    if (wakeAndUnlocking) {
                        mStatusBarKeyguardViewManager.notifyScreenWakeUpRequested();
                    }
                    mStatusBarKeyguardViewManager.animateCollapsePanels(
                            FINGERPRINT_COLLAPSE_SPEEDUP_FACTOR);
                }