From 33f1875a651632d67919514021e829659f71b4ac Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Mon, 6 Jan 2020 15:51:34 -0800 Subject: [PATCH] Bugfix for Animated Gif player not clearing frames --- examples/rgb_display_pillow_animated_gif.py | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/rgb_display_pillow_animated_gif.py b/examples/rgb_display_pillow_animated_gif.py index c695d63..8b7a7b5 100644 --- a/examples/rgb_display_pillow_animated_gif.py +++ b/examples/rgb_display_pillow_animated_gif.py @@ -78,6 +78,7 @@ def preload(self): self._loop = 1 self._frame_count = image.n_frames + self._frames.clear() for frame in range(self._frame_count): image.seek(frame) # Create blank image for drawing.