From 8bd01d60e43343e489623c70890729bf8868d8b5 Mon Sep 17 00:00:00 2001 From: YishiMichael Date: Mon, 22 Aug 2022 17:08:58 +0800 Subject: [PATCH] fix: add protect attribute to hash_seed --- manimlib/mobject/svg/mtex_mobject.py | 1 + manimlib/mobject/svg/text_mobject.py | 1 + 2 files changed, 2 insertions(+) diff --git a/manimlib/mobject/svg/mtex_mobject.py b/manimlib/mobject/svg/mtex_mobject.py index 308f8629..d6687363 100644 --- a/manimlib/mobject/svg/mtex_mobject.py +++ b/manimlib/mobject/svg/mtex_mobject.py @@ -60,6 +60,7 @@ class MTex(StringMobject): self.path_string_config, self.base_color, self.isolate, + self.protect, self.tex_string, self.alignment, self.tex_environment, diff --git a/manimlib/mobject/svg/text_mobject.py b/manimlib/mobject/svg/text_mobject.py index cbf504b7..5e3b7c95 100644 --- a/manimlib/mobject/svg/text_mobject.py +++ b/manimlib/mobject/svg/text_mobject.py @@ -136,6 +136,7 @@ class MarkupText(StringMobject): self.path_string_config, self.base_color, self.isolate, + self.protect, self.text, self.font_size, self.lsh,