This commit is contained in:
Kovid Goyal 2020-01-25 11:51:17 +05:30
parent 2c6cc6f047
commit eaec854bfb
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -642,6 +642,7 @@ class Fat(Tall): # {{{
# }}}
# Grid {{{
@lru_cache()
def calc_grid_size(n):
if n <= 5:
@ -656,7 +657,7 @@ def calc_grid_size(n):
return ncols, nrows, special_rows, special_col
class Grid(Layout): # {{{
class Grid(Layout):
name = 'grid'