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

Commit a69f8531 authored by Selim Cinek's avatar Selim Cinek Committed by Android Git Automerger
Browse files

am fd89d2a0: am 756d5ac2: am e0c0e93a: am d9f1a0c3: Merge "Fixed wake to...

am fd89d2a0: am 756d5ac2: am e0c0e93a: am d9f1a0c3: Merge "Fixed wake to unlock when the device has never been unlocked" into mnc-dev

* commit 'fd89d2a0':
  Fixed wake to unlock when the device has never been unlocked
parents 9fd390c6 fd89d2a0
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);
                }