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

Commit 449b9e7b authored by Winson Chung's avatar Winson Chung Committed by Android (Google) Code Review
Browse files

Merge "Skip launching task if there is no task" into ub-launcher3-master

parents b036dbb6 cb9ae182
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -84,7 +84,10 @@ public class QuickScrubController implements OnAlarmListener {
        }
        int page = mRecentsView.getNextPage();
        Runnable launchTaskRunnable = () -> {
            ((TaskView) mRecentsView.getPageAt(page)).launchTask(true);
            TaskView taskView = ((TaskView) mRecentsView.getPageAt(page));
            if (taskView != null) {
                taskView.launchTask(true);
            }
        };
        int snapDuration = Math.abs(page - mRecentsView.getPageNearestToCenterOfScreen())
                * QUICKSCRUB_END_SNAP_DURATION_PER_PAGE;