Fix bug where folder icon dot anim plays every time.

Change-Id: I6a7e075be62dfcea01c38b2a6a630427e1c5974a
This commit is contained in:
Jon Miranda
2019-03-28 14:19:43 -07:00
parent bd9bd70dcb
commit ae9f62095a

View File

@@ -427,7 +427,9 @@ public class FloatingIconView extends View implements Animator.AnimatorListener,
public void onAnimationEnd(Animator animation) {
folderIcon.setBackgroundVisible(true);
folderIcon.animateBgShadowAndStroke();
folderIcon.animateDotScale(0, 1f);
if (folderIcon.hasDot()) {
folderIcon.animateDotScale(0, 1f);
}
}
});
} else {