summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/src/com/android/systemui/statusbar
diff options
context:
space:
mode:
authorJim Miller <jaggies@google.com>2015-04-11 18:07:57 -0700
committerJim Miller <jaggies@google.com>2015-04-14 20:47:55 -0700
commitfe6439f02db3a541d77a7afb27e3bca1ae7493ed (patch)
treedc1c5478b69e9c33922d447723316e085915c144 /packages/SystemUI/src/com/android/systemui/statusbar
parent3abfa03e374f124e65cefc2cf531b11ea817a110 (diff)
downloadframeworks_base-fe6439f02db3a541d77a7afb27e3bca1ae7493ed.zip
frameworks_base-fe6439f02db3a541d77a7afb27e3bca1ae7493ed.tar.gz
frameworks_base-fe6439f02db3a541d77a7afb27e3bca1ae7493ed.tar.bz2
Several fixes to Fingerprint code after large merge
- route fingerprint enrollment auth token - replace "processed" event with "authenticated" - fix type-o in strings.xml Change-Id: If06b4438c94fd7fca07a8b7b1b5fa16dd94b3831
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/statusbar')
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java
index 410a7e4..094cd1f 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java
@@ -28,6 +28,7 @@ import android.content.res.Configuration;
import android.content.res.Resources;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.InsetDrawable;
+import android.hardware.fingerprint.FingerprintManager;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.RemoteException;
@@ -625,6 +626,7 @@ public class KeyguardBottomAreaView extends FrameLayout implements View.OnClickL
public void onFingerprintError(int msgId, String errString) {
// TODO: Go to bouncer if this is "too many attempts" (lockout) error.
Log.i(TAG, "FP Error: " + errString);
+ updateLockIcon();
}
};