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

Commit 5e7bff52 authored by Steve Elliott's avatar Steve Elliott
Browse files

Fix reversed remote input reveal anims

Method names accidentally flipped when refactoring params to a separate
class.

Fixes: 225903907
Test: 1. Tap Reply action for messaging notification
      2. Observe correct reveal animation
Change-Id: Icbd485ca37d734eaef7c32a5f317bdbe42c884f1
parent 5593d1dd
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);
        }
    }