Merge "Do no play hint animation when retrying auth" into qt-r1-dev

am: dfba874730

Change-Id: I819160e8ac018568db34d917f0bf15057a6dcac4
This commit is contained in:
Lucas Dupin
2019-06-25 13:45:54 -07:00
committed by android-build-merger

View File

@@ -2430,7 +2430,6 @@ public class NotificationPanelView extends PanelView implements
onUnlockHintFinished();
return;
}
mUpdateMonitor.requestFaceAuth();
super.startUnlockHintAnimation();
}
@@ -2651,10 +2650,14 @@ public class NotificationPanelView extends PanelView implements
switch (mBarState) {
case StatusBarState.KEYGUARD:
if (!mDozingOnDown) {
mLockscreenGestureLogger.write(
MetricsEvent.ACTION_LS_HINT,
0 /* lengthDp - N/A */, 0 /* velocityDp - N/A */);
startUnlockHintAnimation();
if (mKeyguardBypassController.getBypassEnabled()) {
mUpdateMonitor.requestFaceAuth();
} else {
mLockscreenGestureLogger.write(
MetricsEvent.ACTION_LS_HINT,
0 /* lengthDp - N/A */, 0 /* velocityDp - N/A */);
startUnlockHintAnimation();
}
}
return true;
case StatusBarState.SHADE_LOCKED: