diff options
| author | 2015-04-24 23:43:34 +0000 | |
|---|---|---|
| committer | 2015-04-24 23:43:56 +0000 | |
| commit | 7be8bfc2325af70df9d3d66ac9a8f830c8c840cc (patch) | |
| tree | 977d492d73a0aee52702e38df8d545c36cb0ce48 | |
| parent | 50c1ed73cd5aff0456ac63b268e83418df80eba2 (diff) | |
| parent | 4a963ac2fa22d633825db1ba1313e11276665ab4 (diff) | |
Merge "Fix stale inKeyguardInputRestrictedMode"
| -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 b828e78a8c57..7b555fc5257c 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); } |