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"),
|
("background", "bgcolor"),
|
||||||
("alpha", "fgalpha"),
|
("alpha", "fgalpha"),
|
||||||
("background_alpha", "bgalpha"),
|
("background_alpha", "bgalpha"),
|
||||||
("underline", "underline_color"),
|
("underline",),
|
||||||
("overline", "overline_color"),
|
("underline_color",),
|
||||||
|
("overline",),
|
||||||
|
("overline_color",),
|
||||||
("rise",),
|
("rise",),
|
||||||
("baseline_shift",),
|
("baseline_shift",),
|
||||||
("font_scale",),
|
("font_scale",),
|
||||||
@ -222,10 +224,10 @@ class Text(SVGMobject):
|
|||||||
"justify": False,
|
"justify": False,
|
||||||
"indent": 0,
|
"indent": 0,
|
||||||
"alignment": "LEFT",
|
"alignment": "LEFT",
|
||||||
"line_width_factor": None, # No auto wrapping if set to None
|
"line_width_factor": None,
|
||||||
"font": "",
|
"font": "",
|
||||||
"disable_ligatures": True,
|
"disable_ligatures": True,
|
||||||
"apply_space_chars": True,
|
"apply_space_chars": False,
|
||||||
"slant": NORMAL,
|
"slant": NORMAL,
|
||||||
"weight": NORMAL,
|
"weight": NORMAL,
|
||||||
"gradient": None,
|
"gradient": None,
|
||||||
|
Reference in New Issue
Block a user