Loading quickstep/src/com/android/launcher3/taskbar/TaskbarViewController.java +2 −2 Original line number Diff line number Diff line Loading @@ -345,8 +345,8 @@ public class TaskbarViewController implements TaskbarControllers.LoggableTaskbar } Rect stashedRect = new Rect(left, top, right, bottom); float radius = 0; float stashedRadius = stashedRect.width() / 2f; float radius = viewBounds.height() / 2f; float stashedRadius = stashedRect.height() / 2f; return new RoundedRectRevealOutlineProvider(radius, stashedRadius, viewBounds, stashedRect) .createRevealAnimator(view, !isStashed, 0); Loading Loading
quickstep/src/com/android/launcher3/taskbar/TaskbarViewController.java +2 −2 Original line number Diff line number Diff line Loading @@ -345,8 +345,8 @@ public class TaskbarViewController implements TaskbarControllers.LoggableTaskbar } Rect stashedRect = new Rect(left, top, right, bottom); float radius = 0; float stashedRadius = stashedRect.width() / 2f; float radius = viewBounds.height() / 2f; float stashedRadius = stashedRect.height() / 2f; return new RoundedRectRevealOutlineProvider(radius, stashedRadius, viewBounds, stashedRect) .createRevealAnimator(view, !isStashed, 0); Loading