Skip to content

Commit 9a9f4ce

Browse files
author
Steven Ross
committed
Stopping Face Unlock immediately on detaching from window fixes 7338808
The refactoring broke my fix for 7222226. We need to stop Face Unlock without any messaging delay when the window is detached to avoid it starting with an invalid window, or stopping right after it restarts. Change-Id: Iea23989ec2ab3ad7d1a57e2d1fb85163a6396024
1 parent 1f07529 commit 9a9f4ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

policy/src/com/android/internal/policy/impl/keyguard/KeyguardFaceUnlockView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public void reset() {
7575
public void onDetachedFromWindow() {
7676
if (DEBUG) Log.d(TAG, "onDetachedFromWindow()");
7777
if (mBiometricUnlock != null) {
78-
mBiometricUnlock.stopAndShowBackup();
78+
mBiometricUnlock.stop();
7979
}
8080
}
8181

0 commit comments

Comments
 (0)