Initialize the size of new panes created by the even-* layout correctly;
authornicm <nicm@openbsd.org>
Sun, 31 Dec 2017 20:00:44 +0000 (20:00 +0000)
committernicm <nicm@openbsd.org>
Sun, 31 Dec 2017 20:00:44 +0000 (20:00 +0000)
reported by Andreas Kahari and Anton Lindqvist.

usr.bin/tmux/layout-set.c

index 4c6d15a..5ac30d4 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: layout-set.c,v 1.19 2017/11/15 19:59:27 nicm Exp $ */
+/* $OpenBSD: layout-set.c,v 1.20 2017/12/31 20:00:44 nicm Exp $ */
 
 /*
  * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -138,6 +138,8 @@ layout_set_even(struct window *w, enum layout_type type)
        TAILQ_FOREACH(wp, &w->panes, entry) {
                lcnew = layout_create_cell(lc);
                layout_make_leaf(lcnew, wp);
+               lcnew->sx = w->sx;
+               lcnew->sy = w->sy;
                TAILQ_INSERT_TAIL(&lc->cells, lcnew, entry);
        }