From 95f56f5e80106443d705c68fa220850ec38daee0 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Thu, 14 Apr 2022 14:37:12 -0700 Subject: [PATCH] Be sure has_updater_status is properly updated after clear --- manimlib/mobject/mobject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manimlib/mobject/mobject.py b/manimlib/mobject/mobject.py index c9fd6467..bcf3151c 100644 --- a/manimlib/mobject/mobject.py +++ b/manimlib/mobject/mobject.py @@ -591,10 +591,10 @@ class Mobject(object): def clear_updaters(self, recurse: bool = True): self.time_based_updaters = [] self.non_time_updaters = [] - self.refresh_has_updater_status() if recurse: for submob in self.submobjects: submob.clear_updaters() + self.refresh_has_updater_status() return self def match_updaters(self, mobject: Mobject):