mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
Fix small height bug
This commit is contained in:
parent
c55374245d
commit
a3215d0354
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,6 @@ class SingleStringTex(SVGMobject):
|
|||
**kwargs
|
||||
):
|
||||
self.tex_string = tex_string
|
||||
self.height = height
|
||||
self.svg_default = svg_default
|
||||
self.path_string_config = path_string_config
|
||||
self.font_size = font_size
|
||||
|
@ -58,6 +57,7 @@ class SingleStringTex(SVGMobject):
|
|||
self.additional_preamble = additional_preamble
|
||||
|
||||
super().__init__(
|
||||
height=height,
|
||||
fill_color=fill_color,
|
||||
fill_opacity=fill_opacity,
|
||||
stroke_width=stroke_width,
|
||||
|
|
Loading…
Add table
Reference in a new issue