Merge "Ignore repeated dismissals for clipboard" into tm-dev

This commit is contained in:
Miranda Kephart
2022-05-12 22:16:33 +00:00
committed by Android (Google) Code Review

View File

@@ -551,6 +551,9 @@ public class ClipboardOverlayController {
}
private void animateOut() {
if (mExitAnimator != null && mExitAnimator.isRunning()) {
return;
}
Animator anim = getExitAnimation();
anim.addListener(new AnimatorListenerAdapter() {
private boolean mCancelled;