Reset default in set_style to stroke_background = False

This commit is contained in:
Grant Sanderson 2023-02-24 08:23:24 -05:00
parent 1eb819363d
commit b216b8f7e3

View file

@ -236,7 +236,7 @@ class VMobject(Mobject):
stroke_opacity: float | Iterable[float] | None = None,
stroke_rgba: Vect4 | None = None,
stroke_width: float | Iterable[float] | None = None,
stroke_background: bool = True,
stroke_background: bool = False,
shading: Tuple[float, float, float] | None = None,
recurse: bool = True
) -> Self: