diff options
author | nicm <nicm> | 2019-06-20 13:40:22 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-06-20 13:40:22 +0000 |
commit | fc1df91e034627f674ed905be6a1159da883545e (patch) | |
tree | 17b541d73730fd22c781badc5dec1258ef165f2b /options-table.c | |
parent | c1573727f0ea1d8a2530edc1a7848d9aa1d6f590 (diff) | |
download | rtmux-fc1df91e034627f674ed905be6a1159da883545e.tar.gz rtmux-fc1df91e034627f674ed905be6a1159da883545e.tar.bz2 rtmux-fc1df91e034627f674ed905be6a1159da883545e.zip |
allow-rename and alternate-screen can be pane options.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options-table.c b/options-table.c index b287d660..228cf3f0 100644 --- a/options-table.c +++ b/options-table.c @@ -563,13 +563,13 @@ const struct options_table_entry options_table[] = { { .name = "allow-rename", .type = OPTIONS_TABLE_FLAG, - .scope = OPTIONS_TABLE_WINDOW, + .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, .default_num = 0 }, { .name = "alternate-screen", .type = OPTIONS_TABLE_FLAG, - .scope = OPTIONS_TABLE_WINDOW, + .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, .default_num = 1 }, |