Merge pull request #52 from kattni/sequence-fix
Fix differing argument.
This commit is contained in:
commit
56230fb658
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue