| commit | 7607aecc378d89a1e02b2dc80db9762852319bdd | [log] [tgz] |
|---|---|---|
| author | Tracy Zhou <tracyzhou@google.com> | Mon May 17 17:15:10 2021 +0000 |
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon May 17 17:15:10 2021 +0000 |
| tree | 88548d8dc504605fd3ff13d8e05f726f8598d784 | |
| parent | f0a1373a50831ba2fb0415733199a1cb4a454901 [diff] | |
| parent | 3ed7ee76c447dc5977c41c5c621ee5b7adb42a78 [diff] |
Merge "Detach nav bar from app after settling into overview" into sc-dev am: 3ed7ee76c4 Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/14543545 Change-Id: I5cde803a9d5d744eaa75c41d735574485059902a
diff --git a/quickstep/src/com/android/quickstep/AbsSwipeUpHandler.java b/quickstep/src/com/android/quickstep/AbsSwipeUpHandler.java index 63646d0..1317b4c 100644 --- a/quickstep/src/com/android/quickstep/AbsSwipeUpHandler.java +++ b/quickstep/src/com/android/quickstep/AbsSwipeUpHandler.java
@@ -1483,6 +1483,9 @@ private void finishCurrentTransitionToRecents() { if (LIVE_TILE.get()) { mStateCallback.setStateOnUiThread(STATE_CURRENT_TASK_FINISHED); + if (mRecentsAnimationController != null) { + mRecentsAnimationController.getController().detachNavigationBarFromApp(true); + } } else if (!hasTargets() || mRecentsAnimationController == null) { // If there are no targets or the animation not started, then there is nothing to finish mStateCallback.setStateOnUiThread(STATE_CURRENT_TASK_FINISHED);