Merge pull request #55 from rhooper/fill-fix
make animation.fill() show the pixels
This commit is contained in:
commit
22b9ec8516
2 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue