diff options
author | Danny Baumann <dannybaumann@web.de> | 2015-12-04 10:11:47 +0100 |
---|---|---|
committer | Roman Birg <roman@cyngn.com> | 2016-02-08 18:44:11 -0800 |
commit | deb5c35ebe59b0ca822b93fbc80df3054f7589da (patch) | |
tree | 192c76a07fb5b63368f730fb4507254fe53dac99 /packages/SystemUI | |
parent | edd5748e07b671c81e12a25722cd1e293d774dab (diff) | |
download | frameworks_base-deb5c35ebe59b0ca822b93fbc80df3054f7589da.zip frameworks_base-deb5c35ebe59b0ca822b93fbc80df3054f7589da.tar.gz frameworks_base-deb5c35ebe59b0ca822b93fbc80df3054f7589da.tar.bz2 |
Fix lockscreen disabling for MSIM.
The prompt for the PIN for second SIM was missing if lockscreen is
disabled.
Change-Id: Ia98771929e905243967c3be6a428f813c2c3d0a9
Diffstat (limited to 'packages/SystemUI')
-rwxr-xr-x | packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java index c78119e..110edd8 100755 --- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java @@ -517,7 +517,7 @@ public class KeyguardViewMediator extends SystemUI { break; case READY: synchronized (this) { - if (mInternallyDisabled) { + if (mInternallyDisabled && !mUpdateMonitor.isSimPinSecure()) { hideLocked(); } else if (mShowing) { resetStateLocked(); |