diff --git a/manimlib/mobject/svg/text_mobject.py b/manimlib/mobject/svg/text_mobject.py index 6052648d..ae0d69a9 100644 --- a/manimlib/mobject/svg/text_mobject.py +++ b/manimlib/mobject/svg/text_mobject.py @@ -85,6 +85,9 @@ class Text(SVGMobject): if self.height is None: self.scale(TEXT_MOB_SCALE_FACTOR) + def init_colors(self, override=True): + super().init_colors(override=override) + def remove_empty_path(self, file_name): with open(file_name, 'r') as fpr: content = fpr.read()