diff options
author | d34d <clark@cyngn.com> | 2016-02-09 15:12:05 -0800 |
---|---|---|
committer | Gerrit Code Review <gerrit@cyanogenmod.org> | 2016-02-12 08:09:56 -0800 |
commit | 1d45972997c57ad539e946e59d357ca44df5d913 (patch) | |
tree | 4aa519db2495430539d85cd4f95acbd43f9e9e0c /packages/SystemUI/src | |
parent | 4522c9ea9b579a33c1a3ebb9fd3b113a637ffbd7 (diff) | |
download | frameworks_base-1d45972997c57ad539e946e59d357ca44df5d913.zip frameworks_base-1d45972997c57ad539e946e59d357ca44df5d913.tar.gz frameworks_base-1d45972997c57ad539e946e59d357ca44df5d913.tar.bz2 |
SysUI: Show LLS when state is SHADE_LOCKED
Continue to show the LLS when the status bar state is SHADE_LOCKED
Change-Id: I3f676bec9a036ea629e47f600f58d53d3cfa079d
TICKET: CYNGNOS-1964
Diffstat (limited to 'packages/SystemUI/src')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java index 6adbe85..7a6c872 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java @@ -1116,7 +1116,8 @@ public class NotificationPanelView extends PanelView implements mAfforanceHelper.updatePreviews(); } } - if (keyguardShowing) { + if (statusBarState == StatusBarState.KEYGUARD || + statusBarState == StatusBarState.SHADE_LOCKED) { updateDozingVisibilities(false /* animate */); if (mThirdPartyKeyguardViewComponent != null) { if (mKeyguardExternalView == null) { |