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

Commit 43102d32 authored by Jon Miranda's avatar Jon Miranda Committed by Automerger Merge Worker
Browse files

Merge "Fix issue where two translation animations clobber each other." into...

Merge "Fix issue where two translation animations clobber each other." into tm-qpr-dev am: 56e660c6

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/22167061



Change-Id: I421382612f9175d45a059519085f29d45acc7d18
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents bb38c78f 56e660c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ public class TaskbarTranslationController implements TaskbarControllers.Loggable
     * Returns an animation to reset the taskbar translation to {@code 0}.
     */
    public ObjectAnimator createAnimToResetTranslation(long duration) {
        ObjectAnimator animator = ObjectAnimator.ofFloat(mTranslationYForSwipe, VALUE, 0);
        ObjectAnimator animator = mTranslationYForSwipe.animateToValue(0);
        animator.setInterpolator(Interpolators.LINEAR);
        animator.setDuration(duration);
        animator.addListener(new AnimatorListenerAdapter() {