diff options
author | Adrian Roos <roosa@google.com> | 2015-04-24 16:04:53 -0700 |
---|---|---|
committer | Adrian Roos <roosa@google.com> | 2015-04-24 16:05:29 -0700 |
commit | 4a963ac2fa22d633825db1ba1313e11276665ab4 (patch) | |
tree | 6d7fb5dded8c661ca8e921fe4997ad6f75fb57e2 /packages/SystemUI/src/com/android/systemui/keyguard | |
parent | 980d25ea4aa004ebfbea56dde6f5974d6a871f4b (diff) | |
download | frameworks_base-4a963ac2fa22d633825db1ba1313e11276665ab4.zip frameworks_base-4a963ac2fa22d633825db1ba1313e11276665ab4.tar.gz frameworks_base-4a963ac2fa22d633825db1ba1313e11276665ab4.tar.bz2 |
Fix stale inKeyguardInputRestrictedMode
Bug: 20536027
Change-Id: Ica65b388ae2c58a45c66e9f30efa3fadeded8d47
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/keyguard')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java | 1 |
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); } |