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

Commit 61e4934b 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

Change-Id: I3f8cfbaa26a90f62246fb5161e4b4cc853a9832c
parents 2ab563ec ecfc6b52
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;