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

Commit 532c867f authored by Yorke Lee's avatar Yorke Lee Committed by Android Git Automerger
Browse files

am 05400140: Merge "Fix magnitude of AbsListView nested scrolling offset"

* commit '054001406952e6192508ab68f702ce2be2e4f7b2':
  Fix magnitude of AbsListView nested scrolling offset
parents a3e3fe8b 3c13d685
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) {