From 960e4e13ebb79a30755a31b8b0fba4012439b43e Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Thu, 23 Jul 2020 11:57:18 -0700 Subject: [PATCH] Updated arrange_in_grid --- manimlib/mobject/mobject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manimlib/mobject/mobject.py b/manimlib/mobject/mobject.py index d6b776e0..b32e4819 100644 --- a/manimlib/mobject/mobject.py +++ b/manimlib/mobject/mobject.py @@ -1029,7 +1029,7 @@ class Mobject(Container): y_unit = buff + max([sm.get_height() for sm in submobs]) for index, sm in enumerate(submobs): - if rows_first: + if fill_rows_first: x, y = index % n_cols, index // n_cols else: x, y = index // n_rows, index % n_rows