From 5584518d8cc83540eafe3ca04ec9d69dfc971da3 Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Tue, 23 Jul 2019 19:26:38 -0700 Subject: [PATCH] Allowing to drag down while the quick settings are expanded Fixes: 137552697 Test: pull down after expanding quick settings Change-Id: I8246820b727d134c5432e6411218f0806d3899cc --- .../android/systemui/statusbar/phone/StatusBarWindowView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java index 94054188d7690..d98ac240d62f4 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java @@ -419,7 +419,7 @@ public class StatusBarWindowView extends FrameLayout { if (mNotificationPanel.isFullyExpanded() && mStatusBarStateController.getState() == StatusBarState.KEYGUARD && !mService.isBouncerShowing() - && !mBypassController.getBypassEnabled() + && (!mBypassController.getBypassEnabled() || mNotificationPanel.isQsExpanded()) && !mService.isDozing()) { intercept = mDragDownHelper.onInterceptTouchEvent(ev); }