Fix size calculation when spreading out panes.

pull/1298/head
nicm 2018-03-23 07:44:44 +00:00
parent 0b3911631b
commit 26792b9035
1 changed files with 1 additions and 1 deletions

View File

@ -1023,7 +1023,7 @@ layout_spread_cell(struct window *w, struct layout_cell *parent)
changed = 0;
TAILQ_FOREACH (lc, &parent->cells, entry) {
if (TAILQ_NEXT(lc, entry) == NULL)
each = size - (each * (number - 1));
each = size - ((each + 1) * (number - 1));
change = 0;
if (parent->type == LAYOUT_LEFTRIGHT) {
change = each - (int)lc->sx;