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

Commit 7750412c authored by Tony Wickham's avatar Tony Wickham Committed by Automerger Merge Worker
Browse files

[DO NOT MERGE] Make overview to home translate faster am: 0a22d107

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

Change-Id: Ib336340eb97ae11a469ea36a689e3b3feff00aff
parents 3676989b 0a22d107
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -18,8 +18,10 @@ package com.android.quickstep.util;
import static com.android.launcher3.LauncherState.NORMAL;
import static com.android.launcher3.LauncherState.OVERVIEW;
import static com.android.launcher3.anim.Interpolators.DEACCEL;
import static com.android.launcher3.anim.Interpolators.FAST_OUT_SLOW_IN;
import static com.android.launcher3.anim.Interpolators.FINAL_FRAME;
import static com.android.launcher3.anim.Interpolators.INSTANT;
import static com.android.launcher3.anim.Interpolators.clampToProgress;
import static com.android.launcher3.states.StateAnimationConfig.ANIM_ALL_COMPONENTS;
import static com.android.launcher3.states.StateAnimationConfig.ANIM_OVERVIEW_ACTIONS_FADE;
import static com.android.launcher3.states.StateAnimationConfig.ANIM_OVERVIEW_FADE;
@@ -110,7 +112,7 @@ public class OverviewToHomeAnim {
        boolean isLayoutNaturalToLauncher = recentsView.getPagedOrientationHandler()
                .isLayoutNaturalToLauncher();
        config.setInterpolator(ANIM_OVERVIEW_TRANSLATE_X, isLayoutNaturalToLauncher
                ? DEACCEL : FINAL_FRAME);
                ? clampToProgress(FAST_OUT_SLOW_IN, 0, 0.75f) : FINAL_FRAME);
        config.setInterpolator(ANIM_OVERVIEW_TRANSLATE_Y, FINAL_FRAME);
        config.setInterpolator(ANIM_OVERVIEW_SCALE, FINAL_FRAME);
        config.setInterpolator(ANIM_OVERVIEW_ACTIONS_FADE, INSTANT);