Fix continueComputingRecentsScrollIfNecessary() running infinitely am: aa2af22da8 am: 60be99b514

Change-Id: I79c0162c1b77dc2d4ece8a1089522ea7eb924552
This commit is contained in:
Tony Wickham
2020-05-05 23:32:08 +00:00
committed by Automerger Merge Worker
@@ -1078,9 +1078,10 @@ public class LauncherSwipeHandler<T extends BaseDraggingActivity>
private void continueComputingRecentsScrollIfNecessary() {
if (!mGestureState.hasState(STATE_RECENTS_SCROLLING_FINISHED)
&& !mStateCallback.hasStates(STATE_HANDLER_INVALIDATED)) {
&& !mStateCallback.hasStates(STATE_HANDLER_INVALIDATED)
&& !mCanceled) {
computeRecentsScrollIfInvisible();
mRecentsView.post(this::continueComputingRecentsScrollIfNecessary);
mRecentsView.postOnAnimation(this::continueComputingRecentsScrollIfNecessary);
}
}