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

Commit e2e19391 authored by Yorke Lee's avatar Yorke Lee
Browse files

Fix magnitude of AbsListView nested scrolling offset

Change-Id: I9402fd4b788c9e93163974fbd4d89c200fe49581
parent 1cb088c1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3320,7 +3320,7 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te
        }
        final int deltaY = rawDeltaY;
        int incrementalDeltaY =
                mLastY != Integer.MIN_VALUE ? y - mLastY - scrollConsumedCorrection : deltaY;
                mLastY != Integer.MIN_VALUE ? y - mLastY + scrollConsumedCorrection : deltaY;
        int lastYCorrection = 0;

        if (mTouchMode == TOUCH_MODE_SCROLL) {