Do not crash trying to fix layout size if only one cell, from Azat Khuzhin.

pull/1945/head
nicm 2019-10-19 12:40:42 +00:00
parent 9fd62efcf0
commit 2cb268d51b
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ layout_parse(struct window *w, const char *layout)
}
break;
}
if (lc->sx != sx || lc->sy != sy) {
if (lc->type != LAYOUT_WINDOWPANE && (lc->sx != sx || lc->sy != sy)) {
log_debug("fix layout %u,%u to %u,%u", lc->sx, lc->sy, sx,sy);
layout_print_cell(lc, __func__, 0);
lc->sx = sx - 1; lc->sy = sy - 1;