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

Commit ae637b60 authored by Tracy Zhou's avatar Tracy Zhou Committed by Android (Google) Code Review
Browse files

Merge "Fix double task bar" into main

parents 7dc0ce40 100d8b3e
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -331,9 +331,10 @@ public class TaskbarStashController implements TaskbarControllers.LoggableTaskba
        applyState(/* duration = */ 0);

        // Hide the background while stashed so it doesn't show on fast swipes home
        boolean shouldHideTaskbarBackground = enableScalingRevealHomeAnimation()
        boolean shouldHideTaskbarBackground = mActivity.isPhoneMode() ||
                (enableScalingRevealHomeAnimation()
                        && DisplayController.isTransientTaskbar(mActivity)
                && isStashed();
                        && isStashed());

        mTaskbarBackgroundAlphaForStash.setValue(shouldHideTaskbarBackground ? 0 : 1);