Loading quickstep/src/com/android/launcher3/taskbar/TaskbarStashController.java +4 −3 Original line number Diff line number Diff line Loading @@ -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); Loading Loading
quickstep/src/com/android/launcher3/taskbar/TaskbarStashController.java +4 −3 Original line number Diff line number Diff line Loading @@ -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); Loading