Modify default value of apply_space_chars

This commit is contained in:
YishiMichael
2022-03-02 19:52:45 +08:00
parent 52a99a0c49
commit fce38fd8a5

View File

@ -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,