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

Commit 6241a484 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: I41b8945bc82da6b1fff34b6f8cfb788de1f732c9
parents 523c2e97 74b0db30
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -903,11 +903,11 @@ public class RemoteInputView extends LinearLayout implements View.OnClickListene
            this.radius = radius;
            this.radius = radius;
        }
        }


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


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