pass show param to super

This commit is contained in:
Roy Hooper 2020-06-18 20:22:11 -04:00
parent 2135dcbc81
commit ab9fd1c32d

View file

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