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

Commit 589f1555 authored by Adam Powell's avatar Adam Powell Committed by Android Git Automerger
Browse files

am c6d83caf: am a0ae8bc5: Merge "Fix a bug that could cause flings to last too...

am c6d83caf: am a0ae8bc5: Merge "Fix a bug that could cause flings to last too long using a Scroller" into gingerbread

Merge commit 'c6d83caf'

* commit 'c6d83caf':
  Fix a bug that could cause flings to last too long using a Scroller
parents 48555f8f c6d83caf
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -219,6 +219,10 @@ public class Scroller {
                mCurrY = Math.min(mCurrY, mMaxY);
                mCurrY = Math.max(mCurrY, mMinY);

                if (mCurrX == mFinalX && mCurrY == mFinalY) {
                    mFinished = true;
                }

                break;
            }
        }