Add sequence fix.

This commit is contained in:
Kattni Rembor 2020-06-19 16:06:13 -04:00
parent 05c690803f
commit 4d8971d383

View file

@ -317,6 +317,6 @@ class AnimateOnce(AnimationSequence):
super().on_cycle_complete()
self._running = False
def animate(self):
super().animate()
def animate(self, show=True):
super().animate(show)
return self._running