summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authord34d <clark@cyngn.com>2016-05-11 11:20:02 -0700
committerGerrit Code Review <gerrit@cyanogenmod.org>2016-05-11 16:03:06 -0700
commit256268f3d2de20ff3185d87957609d15e853fc70 (patch)
tree112c7591a79cff4654a18d88f929997789140e1b /packages
parentdb5cf5dc36c629b9afba8f883ef5e33a33608409 (diff)
downloadframeworks_base-256268f3d2de20ff3185d87957609d15e853fc70.zip
frameworks_base-256268f3d2de20ff3185d87957609d15e853fc70.tar.gz
frameworks_base-256268f3d2de20ff3185d87957609d15e853fc70.tar.bz2
LLS: Fix logic in isKeyguardInteractiveAndShowing
Change-Id: I0722d488969615eef7f63b17f65e5b41d3896329 TICKET: CYNGNOS-2687
Diffstat (limited to 'packages')
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java2
1 files changed, 1 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 d7c1acc..5524a2a 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java
@@ -1046,7 +1046,7 @@ public class NotificationPanelView extends PanelView implements
private boolean isKeyguardInteractiveAndShowing() {
return mShowingExternalKeyguard || mStatusBar.getBarState() != StatusBarState.KEYGUARD ||
- !mLiveLockscreenController.isLiveLockScreenInteractive();
+ mLiveLockscreenController.isLiveLockScreenInteractive();
}
private boolean handleQsTouch(MotionEvent event) {