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

Commit ecfc6b52 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed a bug where the scroller would stop tracking

Because we were not scrolling anymore in the QS area the shade
could become stuck and scrolled in too much.

Change-Id: I2c517d0a8da35230d0510c2a6b0e817d8d3567af
Fixes: 31440725
parent 880e823e
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1228,7 +1228,7 @@ public class NotificationStackScrollLayout extends ViewGroup
        if (!isScrollingEnabled()) {
        if (!isScrollingEnabled()) {
            return false;
            return false;
        }
        }
        if (ev.getY() < mQsContainer.getBottom()) {
        if (ev.getY() < mQsContainer.getBottom() && !mIsBeingDragged) {
            return false;
            return false;
        }
        }
        mForcedScroll = null;
        mForcedScroll = null;