make animation fill show the pixels.

This commit is contained in:
Roy Hooper 2020-06-22 19:11:36 -04:00
parent 3dbe521a49
commit 09e5f656ce
2 changed files with 1 additions and 1 deletions

View file

@ -173,6 +173,7 @@ class Animation:
Fills the pixel object with a color.
"""
self.pixel_object.fill(color)
self.pixel_object.show()
@property
def color(self):

View file

@ -172,7 +172,6 @@ class AnimationSequence:
self.current_animation.reset()
if self.auto_clear:
self.current_animation.fill(self.clear_color)
self.current_animation.show()
if self._random:
self.random()
else: