From a2dd8a262942b1eca8bc44d55a4ed7a6bc639548 Mon Sep 17 00:00:00 2001 From: Luca Zuccarini Date: Tue, 6 Feb 2024 17:03:08 +0000 Subject: [PATCH] Rename a few more animations classes to cover transitions in general. Soon they will be used for both launches and returns, so these names are more accurate. Bug: 323863002 Flag: NA Test: still builds (no functionality change) Change-Id: I618780f0416a466a6672a2e694cb3e3ffd3f1396 --- .../src/com/android/launcher3/QuickstepTransitionManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickstep/src/com/android/launcher3/QuickstepTransitionManager.java b/quickstep/src/com/android/launcher3/QuickstepTransitionManager.java index fca7d05975..b5733f715e 100644 --- a/quickstep/src/com/android/launcher3/QuickstepTransitionManager.java +++ b/quickstep/src/com/android/launcher3/QuickstepTransitionManager.java @@ -158,7 +158,7 @@ import com.android.quickstep.util.WorkspaceRevealAnim; import com.android.quickstep.views.FloatingWidgetView; import com.android.quickstep.views.RecentsView; import com.android.systemui.animation.ActivityTransitionAnimator; -import com.android.systemui.animation.DelegateLaunchAnimatorController; +import com.android.systemui.animation.DelegateTransitionAnimatorController; import com.android.systemui.animation.LaunchableView; import com.android.systemui.animation.RemoteAnimationDelegate; import com.android.systemui.shared.system.BlurUtils; @@ -1848,7 +1848,7 @@ public class QuickstepTransitionManager implements OnDeviceProfileChangeListener // This wrapper allows us to override the default value, telling the controller that the // current window is below the animating window. ActivityTransitionAnimator.Controller controller = - new DelegateLaunchAnimatorController(controllerDelegate) { + new DelegateTransitionAnimatorController(controllerDelegate) { @Override public boolean isBelowAnimatingWindow() { return true;