Merge pull request #55 from rhooper/fill-fix

make animation.fill() show the pixels
This commit is contained in:
Kattni 2020-06-22 19:20:58 -04:00 committed by GitHub
commit 22b9ec8516
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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: