render_group decorator defaults fit kwarg to True (was False)

This commit is contained in:
Matthew Barber 2020-10-15 17:50:07 +01:00
parent e1cb4796ba
commit e906e9a648
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ class RenderGroup:
yield from self.renderables
def render_group(fit: bool = False) -> Callable:
def render_group(fit: bool = True) -> Callable:
"""A decorator that turns an iterable of renderables in to a group."""
def decorator(method):