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

Commit 677978c8 authored by Stefan Andonian's avatar Stefan Andonian
Browse files

Fix for bug where expensive launcher animations were being paused and never resumed.

Bug: 240623130
Test: Verified on device that the issue is not reproducible after fix.
Change-Id: I7b1e2f70fd75b1eddf340a4f85465cc6d5b65f73
(cherry picked from commit 8b336195)
parent 897d7d4d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -518,6 +518,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);
@@ -647,6 +648,7 @@ public class QuickstepTransitionManager implements OnDeviceProfileChangeListener
            overview.setFreezeViewVisibility(false);
            SCALE_PROPERTY.set(overview, 1f);
            mLauncher.getStateManager().reapplyState();
            mLauncher.resumeExpensiveViewUpdates();
        };
    }