mirror of
https://github.com/3b1b/manim.git
synced 2025-07-28 12:32:36 +08:00
Modify default value of apply_space_chars
This commit is contained in:
@ -43,8 +43,10 @@ class _TextParser(object):
|
||||
("background", "bgcolor"),
|
||||
("alpha", "fgalpha"),
|
||||
("background_alpha", "bgalpha"),
|
||||
("underline", "underline_color"),
|
||||
("overline", "overline_color"),
|
||||
("underline",),
|
||||
("underline_color",),
|
||||
("overline",),
|
||||
("overline_color",),
|
||||
("rise",),
|
||||
("baseline_shift",),
|
||||
("font_scale",),
|
||||
@ -222,10 +224,10 @@ class Text(SVGMobject):
|
||||
"justify": False,
|
||||
"indent": 0,
|
||||
"alignment": "LEFT",
|
||||
"line_width_factor": None, # No auto wrapping if set to None
|
||||
"line_width_factor": None,
|
||||
"font": "",
|
||||
"disable_ligatures": True,
|
||||
"apply_space_chars": True,
|
||||
"apply_space_chars": False,
|
||||
"slant": NORMAL,
|
||||
"weight": NORMAL,
|
||||
"gradient": None,
|
||||
|
Reference in New Issue
Block a user