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

Commit 898b9af9 authored by Johannes Gallmann's avatar Johannes Gallmann Committed by Android (Google) Code Review
Browse files

Merge "Fix stuck wallpaper with predictive back" into main

parents c5286026 d0aa5b82
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -1087,7 +1087,12 @@ public class QuickstepTransitionManager implements OnDeviceProfileChangeListener
        }

        backgroundRadiusAnim.addListener(
                AnimatorListeners.forEndCallback(depthController::dispose));
                AnimatorListeners.forEndCallback(() -> {
                    // reset the depth to match the main depth controller's depth
                    depthController.stateDepth
                            .setValue(mLauncher.getDepthController().stateDepth.getValue());
                    depthController.dispose();
                }));

        return backgroundRadiusAnim;
    }