diff options
author | eray orçunus <erayorcunus@gmail.com> | 2015-06-17 16:12:19 +0300 |
---|---|---|
committer | Gerrit Code Review <gerrit@cyanogenmod.org> | 2016-02-08 15:05:19 -0800 |
commit | 5711b9e460e76ee6dd6c3bbcf5565dcb650cd111 (patch) | |
tree | afbd7d0c4f701d5d09ac5a048356b1a5d0ae5ba4 /packages/SystemUI/src/com/android/systemui/keyguard | |
parent | 6bb3b08281651b997526a9e3edffb2ec31a0096d (diff) | |
download | frameworks_base-5711b9e460e76ee6dd6c3bbcf5565dcb650cd111.zip frameworks_base-5711b9e460e76ee6dd6c3bbcf5565dcb650cd111.tar.gz frameworks_base-5711b9e460e76ee6dd6c3bbcf5565dcb650cd111.tar.bz2 |
lockscreen: Add option for showing unlock screen directly (1/3)
* Option appears on PIN,pattern and password methods
* User should press back button to see swipe-up-to-unlock screen.
* Instantly hides keyguard if Smart Lock has unlocked phone.
CYNGNOS-1873
Change-Id: I2ceeed348d7e61632b8344f35431f30cba62ca4f
Signed-off-by: eray orçunus <erayorcunus@gmail.com>
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/keyguard')
-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 17fadbd..3024c27 100755 --- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java @@ -1726,7 +1726,7 @@ public class KeyguardViewMediator extends SystemUI { private void handleReset() { synchronized (KeyguardViewMediator.this) { if (DEBUG) Log.d(TAG, "handleReset"); - mStatusBarKeyguardViewManager.reset(); + mStatusBarKeyguardViewManager.reset(false); } } |