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

Commit 10671554 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix reversed remote input reveal anims" into tm-dev am: 74b0db30

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/17294244

Change-Id: I5335b8c221c93db059fdab4795eec771320ea82c
parents 193ec535 74b0db30
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);
        }
    }