diff options
author | Selim Cinek <cinek@google.com> | 2015-05-11 17:00:39 -0700 |
---|---|---|
committer | Selim Cinek <cinek@google.com> | 2015-05-12 00:42:26 +0000 |
commit | 35b7771fcbe57574d812adbc98acbba96ba47ae2 (patch) | |
tree | 67c4ad1e0ad982ad2747a2f193828599280840cb /packages/SystemUI | |
parent | 6e88f0b7bbcd67de76d46b0adc75b43fdb11611e (diff) | |
download | frameworks_base-35b7771fcbe57574d812adbc98acbba96ba47ae2.zip frameworks_base-35b7771fcbe57574d812adbc98acbba96ba47ae2.tar.gz frameworks_base-35b7771fcbe57574d812adbc98acbba96ba47ae2.tar.bz2 |
Fixed a bug that the user could not drag down on the heads up
Change-Id: I4a806c88d9b2bf4d176dab32ed793c1105ffd237
(cherry picked from commit dcc3138db295c513aeda322a447f9dd1295e180e)
Diffstat (limited to 'packages/SystemUI')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/HeadsUpTouchHelper.java | 2 |
1 files changed, 1 insertions, 1 deletions
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 fe7bc97..3eb6b13 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; |