commit | 2d1a74d33792af31ca6bced36489ac395681e327 | [log] [tgz] |
---|---|---|
author | Tracy Zhou <tracyzhou@google.com> | Fri Apr 23 17:07:22 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Apr 23 17:07:22 2021 +0000 |
tree | 31cbaa0aa9f2ac644a0c4ceafd832bd820f971e4 | |
parent | baa0ec54dd671dd458bfd26fb8ff973e4cff17ce [diff] | |
parent | 5241e3ebc05d3b3928a8a982dbb317e6d3fa9dfa [diff] |
Merge "Null mRecentsAnimationController in the end" into sc-dev am: 5241e3ebc0 Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/14288953 Change-Id: Ic6f64bae8a6c6f1abe761401a535181bfef9492c
diff --git a/quickstep/src/com/android/quickstep/views/RecentsView.java b/quickstep/src/com/android/quickstep/views/RecentsView.java index 790c655..d39c58b 100644 --- a/quickstep/src/com/android/quickstep/views/RecentsView.java +++ b/quickstep/src/com/android/quickstep/views/RecentsView.java
@@ -3169,7 +3169,6 @@ } mRecentsAnimationController.finish(toRecents, () -> { - mRecentsAnimationController = null; if (onFinishComplete != null) { onFinishComplete.run(); } @@ -3179,6 +3178,7 @@ // typical example of this is (1) user swipes up from app to Overview (2) user // taps on QSB (3) user goes back to Overview and launch the most recent task. setCurrentTask(-1); + mRecentsAnimationController = null; }); }