summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/src/com/android/systemui
diff options
context:
space:
mode:
authorAdrian Roos <roosa@google.com>2015-04-24 23:43:34 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-04-24 23:43:56 +0000
commit7be8bfc2325af70df9d3d66ac9a8f830c8c840cc (patch)
tree977d492d73a0aee52702e38df8d545c36cb0ce48 /packages/SystemUI/src/com/android/systemui
parent50c1ed73cd5aff0456ac63b268e83418df80eba2 (diff)
parent4a963ac2fa22d633825db1ba1313e11276665ab4 (diff)
downloadframeworks_base-7be8bfc2325af70df9d3d66ac9a8f830c8c840cc.zip
frameworks_base-7be8bfc2325af70df9d3d66ac9a8f830c8c840cc.tar.gz
frameworks_base-7be8bfc2325af70df9d3d66ac9a8f830c8c840cc.tar.bz2
Merge "Fix stale inKeyguardInputRestrictedMode"
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui')
-rw-r--r--packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
index b828e78..7b555fc 100644
--- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
+++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
@@ -1549,6 +1549,7 @@ public class KeyguardViewMediator extends SystemUI {
try {
callback.onSimSecureStateChanged(mUpdateMonitor.isSimPinSecure());
callback.onShowingStateChanged(mShowing);
+ callback.onInputRestrictedStateChanged(mInputRestricted);
} catch (RemoteException e) {
Slog.w(TAG, "Failed to call onShowingStateChanged or onSimSecureStateChanged", e);
}