diff options
author | nicm <nicm> | 2021-03-11 06:31:05 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-03-11 06:31:05 +0000 |
commit | d98f9f7fe56beefeb294184ffaed24b7ea510a97 (patch) | |
tree | 46adbfe0fbc5e7f4a782792470c8d8e5465ee79c /options.c | |
parent | 7f87280cd539c26a9b088cca2de895dd86b60449 (diff) | |
download | rtmux-d98f9f7fe56beefeb294184ffaed24b7ea510a97.tar.gz rtmux-d98f9f7fe56beefeb294184ffaed24b7ea510a97.tar.bz2 rtmux-d98f9f7fe56beefeb294184ffaed24b7ea510a97.zip |
Add split-window -Z to start the pane zoomed, GitHub issue 2591.
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1115,7 +1115,7 @@ options_push_changes(const char *name) } if (strcmp(name, "pane-border-status") == 0) { RB_FOREACH(w, windows, &windows) - layout_fix_panes(w); + layout_fix_panes(w, NULL); } RB_FOREACH(s, sessions, &sessions) status_update_cache(s); |