mirror of
https://github.com/3b1b/manim.git
synced 2025-07-30 21:44:19 +08:00
Solution of text rendering problem (#628)
Prevent unwanted space added between TextMobjects
This commit is contained in:
@ -157,7 +157,8 @@ class TexMobject(SingleStringTexMobject):
|
||||
split_list = split_string_list_to_isolate_substrings(
|
||||
tex_strings, *substrings_to_isolate
|
||||
)
|
||||
split_list = [str(x).strip() for x in split_list]
|
||||
if self.arg_separator == ' ':
|
||||
split_list = [str(x).strip() for x in split_list]
|
||||
#split_list = list(map(str.strip, split_list))
|
||||
split_list = [s for s in split_list if s != '']
|
||||
return split_list
|
||||
@ -242,6 +243,7 @@ class TextMobject(TexMobject):
|
||||
CONFIG = {
|
||||
"template_tex_file_body": TEMPLATE_TEXT_FILE_BODY,
|
||||
"alignment": "\\centering",
|
||||
"arg_separator": "",
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user