Merge "Don't show FP error canceled message" into pi-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
2c6ea60711
@@ -79,6 +79,10 @@ public class FingerprintUiHelper extends FingerprintManager.AuthenticationCallba
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onAuthenticationError(int errMsgId, CharSequence errString) {
|
public void onAuthenticationError(int errMsgId, CharSequence errString) {
|
||||||
|
if (errMsgId == FingerprintManager.FINGERPRINT_ERROR_CANCELED) {
|
||||||
|
// Only happens if we get preempted by another activity. Ignored.
|
||||||
|
return;
|
||||||
|
}
|
||||||
showError(errString);
|
showError(errString);
|
||||||
setFingerprintIconVisibility(false);
|
setFingerprintIconVisibility(false);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user