From cfe70ca869c3dbe0ff42305213475e8786f2c24b Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Wed, 21 Aug 2024 16:47:51 -0500 Subject: [PATCH] Don't let Write override stroke_behind default --- manimlib/animation/creation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/manimlib/animation/creation.py b/manimlib/animation/creation.py index 61f5f4f9..64a2492d 100644 --- a/manimlib/animation/creation.py +++ b/manimlib/animation/creation.py @@ -115,6 +115,7 @@ class DrawBorderThenFill(Animation): sm.set_stroke( color=self.stroke_color or sm.get_stroke_color(), width=self.stroke_width, + behind=self.mobject.stroke_behind, ) return outline