From ceccddd262aeaced56140295095f1119299dfbe6 Mon Sep 17 00:00:00 2001 From: Ben Hambrecht Date: Tue, 6 Feb 2018 11:13:55 +0100 Subject: [PATCH] fixed copying problem in animation --- scene/scene.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/scene.py b/scene/scene.py index 76869622..4c72897c 100644 --- a/scene/scene.py +++ b/scene/scene.py @@ -367,7 +367,7 @@ class Scene(Container): animations.pop() #method should already have target then. else: - mobject.target = mobject.copy() + mobject.target = mobject.deepcopy() # if len(state["method_args"]) > 0 and isinstance(state["method_args"][-1], dict): method_kwargs = state["method_args"].pop()