From 35b7771fcbe57574d812adbc98acbba96ba47ae2 Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Mon, 11 May 2015 17:00:39 -0700 Subject: [PATCH] Fixed a bug that the user could not drag down on the heads up Change-Id: I4a806c88d9b2bf4d176dab32ed793c1105ffd237 (cherry picked from commit dcc3138db295c513aeda322a447f9dd1295e180e) --- .../android/systemui/statusbar/phone/HeadsUpTouchHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/HeadsUpTouchHelper.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/HeadsUpTouchHelper.java index fe7bc977f3fd8..3eb6b13417a8b 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/HeadsUpTouchHelper.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/HeadsUpTouchHelper.java @@ -75,7 +75,7 @@ public class HeadsUpTouchHelper implements Gefingerpoken { mInitialTouchY = y; mInitialTouchX = x; setTrackingHeadsUp(false); - ExpandableView child = mStackScroller.getChildAtPosition(x, y); + ExpandableView child = mStackScroller.getChildAtRawPosition(x, y); mTouchingHeadsUpView = false; if (child instanceof ExpandableNotificationRow) { mPickedChild = (ExpandableNotificationRow) child;