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

Commit 28d354c9 authored by Stefan Andonian's avatar Stefan Andonian Committed by Android (Google) Code Review
Browse files

Merge "Fix for bug where expensive launcher animations were being paused and...

Merge "Fix for bug where expensive launcher animations were being paused and never resumed." into tm-qpr-dev
parents 6a4a229c 8b336195
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -517,6 +517,7 @@ public class QuickstepTransitionManager implements OnDeviceProfileChangeListener
                appsView.setAlpha(startAlpha);
                SCALE_PROPERTY.set(appsView, startScale);
                appsView.setLayerType(View.LAYER_TYPE_NONE, null);
                mLauncher.resumeExpensiveViewUpdates();
            };
        } else if (mLauncher.isInState(OVERVIEW)) {
            endListener = composeViewContentAnimator(launcherAnimator, alphas, scales);
@@ -634,6 +635,7 @@ public class QuickstepTransitionManager implements OnDeviceProfileChangeListener
            overview.setFreezeViewVisibility(false);
            SCALE_PROPERTY.set(overview, 1f);
            mLauncher.getStateManager().reapplyState();
            mLauncher.resumeExpensiveViewUpdates();
        };
    }