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

Commit dc3e4c97 authored by Jon Miranda's avatar Jon Miranda Committed by Automerger Merge Worker
Browse files

Merge "Update start radius for reveal animation to match spec." into tm-qpr-dev am: 0a6356a5

parents 75a0c72d 0a6356a5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);