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

Commit 74b0db30 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix reversed remote input reveal anims" into tm-dev

parents ee06c566 5e7bff52
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -903,11 +903,11 @@ public class RemoteInputView extends LinearLayout implements View.OnClickListene
            this.radius = radius;
        }

        Animator createCircularRevealAnimator(View view) {
        Animator createCircularHideAnimator(View view) {
            return ViewAnimationUtils.createCircularReveal(view, centerX, centerY, radius, 0);
        }

        Animator createCircularHideAnimator(View view) {
        Animator createCircularRevealAnimator(View view) {
            return ViewAnimationUtils.createCircularReveal(view, centerX, centerY, 0, radius);
        }
    }