diff --git a/es-core/src/components/IList.h b/es-core/src/components/IList.h index dfa122410..158b24ef1 100644 --- a/es-core/src/components/IList.h +++ b/es-core/src/components/IList.h @@ -222,6 +222,8 @@ protected: { mLastCursor = mCursor; mCursor = 0; + mScrollVelocity = 0; + mScrollTier = 0; onCursorChanged(CursorState::CURSOR_STOPPED); onScroll(); return true; @@ -231,6 +233,8 @@ protected: { mLastCursor = mCursor; mCursor = static_cast(mEntries.size()) - 1; + mScrollVelocity = 0; + mScrollTier = 0; onCursorChanged(CursorState::CURSOR_STOPPED); onScroll(); return true;