From cea5693b3e6258851d71290d1ff804820c647b13 Mon Sep 17 00:00:00 2001 From: justinbeetle <30003866+justinbeetle@users.noreply.github.com> Date: Tue, 30 Dec 2025 12:25:51 -0600 Subject: [PATCH] Fix issue where PyscrollDataAdapter.reload_animations didn't clear self._animated_tile leading to a frame of stale animations after reload_animations is called. --- pyscroll/data.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyscroll/data.py b/pyscroll/data.py index 860f031..d80c50f 100644 --- a/pyscroll/data.py +++ b/pyscroll/data.py @@ -156,6 +156,7 @@ def reload_animations(self) -> None: """ self._update_time() self._animation_queue = list() + self._animated_tile = dict() self._tracked_gids = set() self._animation_map = dict()