From f91de686014b662e961b0b04e656a7782c3e6525 Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Wed, 11 May 2016 13:01:02 -0400 Subject: [PATCH] Fixed a bug where the QS was animating wrong when closing Because the overscroll flag was still set the animation could be wrong. Change-Id: I52adf744c92723590297844bbefef8ecf5c8d737 Fixes: 28511835 --- .../android/systemui/statusbar/phone/NotificationPanelView.java | 1 + 1 file changed, 1 insertion(+) 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 5256e4f6d1843..9dbec6da2bc2c 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java @@ -941,6 +941,7 @@ public class NotificationPanelView extends PanelView implements @Override public void flingTopOverscroll(float velocity, boolean open) { mLastOverscroll = 0f; + mQsExpansionFromOverscroll = false; setQsExpansion(mQsExpansionHeight); flingSettings(!mQsExpansionEnabled && open ? 0f : velocity, open && mQsExpansionEnabled, new Runnable() {