You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling stop() does not disable the animation fully and takes a lot of CPU. The stop method incorrectly calls start() instead of stop on the ballSizeAnimator:
public void stop() {
ballPathAnimator.stop();
if (sizeAnimationEnabled) {
ballSizeAnimator.start();
}
}
The text was updated successfully, but these errors were encountered:
Calling stop() does not disable the animation fully and takes a lot of CPU. The stop method incorrectly calls start() instead of stop on the ballSizeAnimator:
The text was updated successfully, but these errors were encountered: