summaryrefslogtreecommitdiffstats
path: root/options-table.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2023-08-15 10:01:09 +0100
committerThomas Adam <thomas@xteddy.org>2023-08-15 10:01:09 +0100
commit6a45e6c256d15b14bf3af081576a939a18419da7 (patch)
treeddc7cfc05a3c70dc9a5646c044285d44213d2e2a /options-table.c
parent11e69f6025f5783fe17d43247de1c3f659a19b69 (diff)
parentb770a429c63a8e286dbd3939215fbffa59e73d9a (diff)
Merge branch 'obsd-master'
Diffstat (limited to 'options-table.c')
-rw-r--r--options-table.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/options-table.c b/options-table.c
index e746ee34..594f2dd7 100644
--- a/options-table.c
+++ b/options-table.c
@@ -335,6 +335,15 @@ const struct options_table_entry options_table[] = {
.text = "Default style of menu."
},
+ { .name = "menu-selected-style",
+ .type = OPTIONS_TABLE_STRING,
+ .scope = OPTIONS_TABLE_WINDOW,
+ .flags = OPTIONS_TABLE_IS_STYLE,
+ .default_str = "bg=yellow,fg=black",
+ .separator = ",",
+ .text = "Default style of selected menu item."
+ },
+
{ .name = "menu-border-style",
.type = OPTIONS_TABLE_STRING,
.scope = OPTIONS_TABLE_WINDOW,
@@ -961,8 +970,8 @@ const struct options_table_entry options_table[] = {
{ .name = "mode-style",
.type = OPTIONS_TABLE_STRING,
.scope = OPTIONS_TABLE_WINDOW,
- .default_str = "bg=yellow,fg=black",
.flags = OPTIONS_TABLE_IS_STYLE,
+ .default_str = "bg=yellow,fg=black",
.separator = ",",
.text = "Style of indicators and highlighting in modes."
},