Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c87bbeea authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Merge cherrypicks of [9169765, 9170440, 9170173, 9170474, 9170250, 9170251,...

Merge cherrypicks of [9169765, 9170440, 9170173, 9170474, 9170250, 9170251, 9170252, 9170462, 9170463, 9170464, 9170264, 9170422, 9170465] into qt-release

Change-Id: Ibd56f04c2e465a1ddb728e0ef98a900069f5f5a1
parents 72b4b224 a50cf977
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -1133,17 +1133,16 @@ public class WindowTransformSwipeHandler<T extends BaseDraggingActivity>
        }
        if (start == end || duration <= 0) {
            mLauncherTransitionController.dispatchSetInterpolator(t -> end);
            mLauncherTransitionController.getAnimationPlayer().end();
        } else {
            mLauncherTransitionController.dispatchSetInterpolator(adjustedInterpolator);
            mAnimationFactory.adjustActivityControllerInterpolators();
            mLauncherTransitionController.getAnimationPlayer().setDuration(duration);
        }
        mLauncherTransitionController.getAnimationPlayer().setDuration(Math.max(0, duration));

        if (QUICKSTEP_SPRINGS.get()) {
            mLauncherTransitionController.dispatchOnStartWithVelocity(end, velocityPxPerMs.y);
        }
        mLauncherTransitionController.getAnimationPlayer().start();
        }
        mHasLauncherTransitionControllerStarted = true;
    }