diff options
author | 2017-12-31 20:00:44 +0000 | |
---|---|---|
committer | 2017-12-31 20:00:44 +0000 | |
commit | 8135e02828207739d1f89179df402760e22e0d07 (patch) | |
tree | c57ecbc0dc3f2832cef0e48004437e903236fe5d | |
parent | sxitemp(4) (diff) | |
download | wireguard-openbsd-8135e02828207739d1f89179df402760e22e0d07.tar.xz wireguard-openbsd-8135e02828207739d1f89179df402760e22e0d07.zip |
Initialize the size of new panes created by the even-* layout correctly;
reported by Andreas Kahari and Anton Lindqvist.
-rw-r--r-- | usr.bin/tmux/layout-set.c | 4 |
1 files changed, 3 insertions, 1 deletions
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 <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); } |