summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Michał Brzeziński <brzezinski@google.com> 2021-09-20 13:00:32 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2021-09-20 13:00:32 +0000
commit1c7308511f0366c5dfb9ce351425812a37c9e4c7 (patch)
tree67e4e97e5e274c88c8bc5f9a934fe942733aa2df
parent2044a05ad6e2993f31811b42a437ec741075c7cd (diff)
parent265518c7b0960e523ad5ca85ca657ce4aea17f83 (diff)
Merge "Fixing customizer scroll in collapsed split shade" into sc-v2-dev
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelViewController.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelViewController.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelViewController.java
index 408d0f9fadd8..b21088a7eb3a 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelViewController.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelViewController.java
@@ -3780,7 +3780,7 @@ public class NotificationPanelViewController extends PanelViewController {
return new TouchHandler() {
@Override
public boolean onInterceptTouchEvent(MotionEvent event) {
- if (mBlockTouches || mQsFullyExpanded && mQs.disallowPanelTouches()) {
+ if (mBlockTouches || mQs.disallowPanelTouches()) {
return false;
}
initDownStates(event);