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

Commit d766aada authored by Tony Wickham's avatar Tony Wickham
Browse files

Fix scrolling to first task on swipe up for RTL

Change-Id: I4f316bd6da7e7d370928accb41e1b44a689094af
parent ba7d129a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -139,7 +139,9 @@ public class RecentsViewStateController implements StateHandler {
        applyProgress();
        if (mIsRecentsScrollingToFirstTask) {
            int scrollForFirstTask = mRecentsView.getScrollForPage(mRecentsView.getFirstTaskIndex());
            mRecentsView.setScrollX((int) (mTransitionProgress.value * scrollForFirstTask));
            int scrollForPage0 = mRecentsView.getScrollForPage(0);
            mRecentsView.setScrollX((int) (mTransitionProgress.value * scrollForFirstTask
                    + (1 - mTransitionProgress.value) * scrollForPage0));
        }
    }