Fix continueComputingRecentsScrollIfNecessary() running infinitely am: aa2af22da8

Change-Id: I8e824027554e62c05dafce80d8b523a1d8065383
This commit is contained in:
Tony Wickham
2020-05-05 23:18:04 +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);
}
}