diff options
author | 2014-11-03 23:27:18 +0000 | |
---|---|---|
committer | 2014-11-03 23:27:18 +0000 | |
commit | 61059fe82ca43adcd34ab8f48201a8925dcec164 (patch) | |
tree | 5f9ad1a124ee6397d84e327c54f271cad7f4f10e | |
parent | 343baef7a50c5cdafeeab6b22cd8a888d5cef29c (diff) | |
parent | 3c7efdc00506e6561ca08933f0b2acf5e3f16b02 (diff) |
Merge "Only hide sensitive content when Keyguard is showing" into lmp-mr1-dev
automerge: 3c7efdc
* commit '3c7efdc00506e6561ca08933f0b2acf5e3f16b02':
Only hide sensitive content when Keyguard is showing
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java index fc7081b1598f..72dfee642467 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java @@ -3630,9 +3630,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode, } private void updatePublicMode() { - setLockscreenPublicMode( - (mStatusBarKeyguardViewManager.isShowing() || - mStatusBarKeyguardViewManager.isOccluded()) + setLockscreenPublicMode(mStatusBarKeyguardViewManager.isShowing() && mStatusBarKeyguardViewManager.isSecure()); } |