From c9f5cefef4162a15dfba3d1ce9abe8551e2ecb43 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Mon, 21 Mar 2016 19:29:49 -0700 Subject: [PATCH] Got sick of inconsistant Tex sizes --- mobject/tex_mobject.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/mobject/tex_mobject.py b/mobject/tex_mobject.py index b2efc14a..4143f982 100644 --- a/mobject/tex_mobject.py +++ b/mobject/tex_mobject.py @@ -13,11 +13,7 @@ class TexMobject(Mobject): } def __init__(self, expression, **kwargs): if "size" not in kwargs: - #Todo, make this more sophisticated. - if len("".join(expression)) < MAX_LEN_FOR_HUGE_TEX_FONT: - size = "\\Huge" - else: - size = "\\large" + size = "\\Large" digest_locals(self) Mobject.__init__(self, **kwargs)