From 2083c5450dd2198339801b11e94d23c2cb3dff55 Mon Sep 17 00:00:00 2001 From: Tony Huang Date: Mon, 22 May 2023 16:38:14 +0800 Subject: [PATCH] Hide divider immediately if going to launcher Divider should hide immediately when going to launcher, this fix the divider hidden delay in 3-btn-nav mode. Fix: 283058496 Test: manual Test: pass existing tests Change-Id: Ia4eaba8020c564cc95b8652fe0f7066b653b9df4 --- .../src/com/android/launcher3/QuickstepTransitionManager.java | 1 + 1 file changed, 1 insertion(+) diff --git a/quickstep/src/com/android/launcher3/QuickstepTransitionManager.java b/quickstep/src/com/android/launcher3/QuickstepTransitionManager.java index 977163b8b0..3ec82cefa3 100644 --- a/quickstep/src/com/android/launcher3/QuickstepTransitionManager.java +++ b/quickstep/src/com/android/launcher3/QuickstepTransitionManager.java @@ -1702,6 +1702,7 @@ public class QuickstepTransitionManager implements OnDeviceProfileChangeListener QuickStepContract.getWindowCornerRadius(mLauncher), false /* fromPredictiveBack */); + TaskViewUtils.createSplitAuxiliarySurfacesAnimator(nonAppTargets, false, null); mLauncher.clearForceInvisibleFlag(INVISIBLE_ALL); result.setAnimation(pair.second, mLauncher); }