Fixed a bug where the scroller would stop tracking am: ecfc6b52ec

am: 61e4934b8f

Change-Id: Ib658b8762e7ebefc7798553351dbd150178458d2
This commit is contained in:
Selim Cinek
2016-09-29 22:57:04 +00:00
committed by android-build-merger

View File

@@ -1228,7 +1228,7 @@ public class NotificationStackScrollLayout extends ViewGroup
if (!isScrollingEnabled()) {
return false;
}
if (ev.getY() < mQsContainer.getBottom()) {
if (ev.getY() < mQsContainer.getBottom() && !mIsBeingDragged) {
return false;
}
mForcedScroll = null;