mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
resolving a minor bug in string_mobject
This commit is contained in:
parent
dec8fc5eeb
commit
b2df51c41a
1 changed files with 2 additions and 2 deletions
|
@ -122,8 +122,8 @@ class StringMobject(SVGMobject, ABC):
|
||||||
# of submobject which are and use those for labels
|
# of submobject which are and use those for labels
|
||||||
unlabelled_submobs = submobs
|
unlabelled_submobs = submobs
|
||||||
labelled_content = self.get_content(is_labelled=True)
|
labelled_content = self.get_content(is_labelled=True)
|
||||||
labelled_file = self.get_file_path_by_content(labelled_content)
|
labelled_file = self.get_svg_string_by_content(labelled_content)
|
||||||
labelled_submobs = super().mobjects_from_file(labelled_file)
|
labelled_submobs = super().mobjects_from_svg_string(labelled_file)
|
||||||
self.labelled_submobs = labelled_submobs
|
self.labelled_submobs = labelled_submobs
|
||||||
self.unlabelled_submobs = unlabelled_submobs
|
self.unlabelled_submobs = unlabelled_submobs
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue