Merge "Fix crash when handling recents animation canceled" into sc-dev

This commit is contained in:
Winson Chung
2021-07-03 03:26:26 +00:00
committed by Android (Google) Code Review

View File

@@ -364,7 +364,9 @@ public class GestureState implements RecentsAnimationCallbacks.RecentsAnimationL
mStateCallback.setState(STATE_RECENTS_ANIMATION_ENDED);
if (mRecentsAnimationCanceledSnapshot != null) {
// Clean up the screenshot to finalize the recents animation cancel
mRecentsAnimationController.cleanupScreenshot();
if (mRecentsAnimationController != null) {
mRecentsAnimationController.cleanupScreenshot();
}
mRecentsAnimationCanceledSnapshot = null;
}
}