Forgot to propagate kwargs in Underline

This commit is contained in:
Grant Sanderson 2019-12-12 14:40:08 -08:00
parent ba2f2f8840
commit c2838d78a2

View file

@ -80,6 +80,6 @@ class Underline(Line):
}
def __init__(self, mobject, **kwargs):
super().__init__(LEFT, RIGHT)
super().__init__(LEFT, RIGHT, **kwargs)
self.match_width(mobject)
self.next_to(mobject, DOWN, buff=self.buff)