summaryrefslogtreecommitdiffstats
path: root/options-table.c
diff options
context:
space:
mode:
authornicm <nicm>2019-06-20 13:40:22 +0000
committernicm <nicm>2019-06-20 13:40:22 +0000
commitfc1df91e034627f674ed905be6a1159da883545e (patch)
tree17b541d73730fd22c781badc5dec1258ef165f2b /options-table.c
parentc1573727f0ea1d8a2530edc1a7848d9aa1d6f590 (diff)
allow-rename and alternate-screen can be pane options.
Diffstat (limited to 'options-table.c')
-rw-r--r--options-table.c4
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
},