From 8135e02828207739d1f89179df402760e22e0d07 Mon Sep 17 00:00:00 2001 From: nicm Date: Sun, 31 Dec 2017 20:00:44 +0000 Subject: [PATCH] Initialize the size of new panes created by the even-* layout correctly; reported by Andreas Kahari and Anton Lindqvist. --- usr.bin/tmux/layout-set.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr.bin/tmux/layout-set.c b/usr.bin/tmux/layout-set.c index 4c6d15a07df..5ac30d49c8f 100644 --- a/usr.bin/tmux/layout-set.c +++ b/usr.bin/tmux/layout-set.c @@ -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 @@ -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); } -- 2.20.1