diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-06-20 15:02:26 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-06-20 15:02:26 +0100 |
commit | f8ad72b2eeafc1146c116f73194a3950aa0c2143 (patch) | |
tree | 98b47921006cbb3e96d98fc8214824ec130e364e /options-table.c | |
parent | a0e2c1b4cae9269d04ee2e80e1d1cb8adc78cd8a (diff) | |
parent | 5f92f92908b81b4ec66682adb84b9ffc8d83c2f7 (diff) | |
download | rtmux-f8ad72b2eeafc1146c116f73194a3950aa0c2143.tar.gz rtmux-f8ad72b2eeafc1146c116f73194a3950aa0c2143.tar.bz2 rtmux-f8ad72b2eeafc1146c116f73194a3950aa0c2143.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/options-table.c b/options-table.c index cb258014..0bb4440b 100644 --- a/options-table.c +++ b/options-table.c @@ -699,7 +699,7 @@ const struct options_table_entry options_table[] = { { .name = "remain-on-exit", .type = OPTIONS_TABLE_FLAG, - .scope = OPTIONS_TABLE_WINDOW, + .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, .default_num = 0 }, @@ -711,7 +711,7 @@ const struct options_table_entry options_table[] = { { .name = "window-active-style", .type = OPTIONS_TABLE_STYLE, - .scope = OPTIONS_TABLE_WINDOW, + .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, .default_str = "default" }, @@ -724,7 +724,7 @@ const struct options_table_entry options_table[] = { { .name = "window-style", .type = OPTIONS_TABLE_STYLE, - .scope = OPTIONS_TABLE_WINDOW, + .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, .default_str = "default" }, |