diff options
author | nicm <nicm> | 2016-08-03 09:07:02 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-08-03 09:07:02 +0000 |
commit | f8cc48a43f1fd5fe082fde86b429c2cda5bcf1b0 (patch) | |
tree | 01924b8a29b0cf1ca69e6bfea1d85c789841d8db /layout-custom.c | |
parent | 9436a316038d1d1c9bc161d282564ed67e2f8ce2 (diff) | |
download | rtmux-f8cc48a43f1fd5fe082fde86b429c2cda5bcf1b0.tar.gz rtmux-f8cc48a43f1fd5fe082fde86b429c2cda5bcf1b0.tar.bz2 rtmux-f8cc48a43f1fd5fe082fde86b429c2cda5bcf1b0.zip |
Fix minimum size when pane status line is enabled, reported by Y Petremann.
Diffstat (limited to 'layout-custom.c')
-rw-r--r-- | layout-custom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layout-custom.c b/layout-custom.c index c93e39c0..205e1fca 100644 --- a/layout-custom.c +++ b/layout-custom.c @@ -150,7 +150,7 @@ layout_parse(struct window *w, const char *layout) /* Fewer panes than cells - close the bottom right. */ lcchild = layout_find_bottomright(lc); - layout_destroy_cell(lcchild, &lc); + layout_destroy_cell(w, lcchild, &lc); } /* Save the old window size and resize to the layout size. */ |