Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 48c71cb3 authored by Selim Cinek's avatar Selim Cinek Committed by android-build-merger
Browse files

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

am: 61e4934b

Change-Id: Ib658b8762e7ebefc7798553351dbd150178458d2
parents e654f0e9 61e4934b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;