mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-08 01:04:06 +01:00
Prevent tiled producing a corrupt layout when only one column is needed,
from Karl Ferdinand Ebert.
This commit is contained in:
parent
79e30daeae
commit
0a404aabd3
@ -519,7 +519,7 @@ layout_set_tiled(struct window *w)
|
||||
TAILQ_INSERT_TAIL(&lc->cells, lcrow, entry);
|
||||
|
||||
/* If only one column, just use the row directly. */
|
||||
if (n - (j * columns) == 1) {
|
||||
if (n - (j * columns) == 1 || columns == 1) {
|
||||
layout_make_leaf(lcrow, wp);
|
||||
wp = TAILQ_NEXT(wp, entry);
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user