diff options
| author | 2019-04-24 20:50:22 +0000 | |
|---|---|---|
| committer | 2019-04-24 20:50:22 +0000 | |
| commit | 7aa5752bbe852294e4ea59a637466aa95262106c (patch) | |
| tree | 058adddf3db9db205a1af1e5d8a482ada121f6b1 | |
| parent | 7def7254ea09b16f96b621253dca405b3ed89182 (diff) | |
| parent | f5f1236addfcd804f43becbc3a06c9619979a7f1 (diff) | |
Merge "Do not re-show hint text if user is already authenticated" into qt-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/biometrics/BiometricDialogView.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/biometrics/BiometricDialogView.java b/packages/SystemUI/src/com/android/systemui/biometrics/BiometricDialogView.java index 39e0dff5675b..30c97d718604 100644 --- a/packages/SystemUI/src/com/android/systemui/biometrics/BiometricDialogView.java +++ b/packages/SystemUI/src/com/android/systemui/biometrics/BiometricDialogView.java @@ -408,6 +408,7 @@ public abstract class BiometricDialogView extends LinearLayout { public void showConfirmationButton(boolean show) { if (show) { + mHandler.removeMessages(MSG_CLEAR_MESSAGE); updateState(STATE_PENDING_CONFIRMATION); mPositiveButton.setVisibility(View.VISIBLE); } else { |