From 5e09a80c5bbca7626c57ac56396aec1709d85f07 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Wed, 13 Jan 2021 00:35:57 -1000 Subject: [PATCH] Bug fix, call super().finish() --- manimlib/animation/transform.py | 1 + 1 file changed, 1 insertion(+) diff --git a/manimlib/animation/transform.py b/manimlib/animation/transform.py index 82721a88..297f322e 100644 --- a/manimlib/animation/transform.py +++ b/manimlib/animation/transform.py @@ -55,6 +55,7 @@ class Transform(Animation): ) def finish(self): + super().finish() self.mobject.unlock_data() def create_target(self):