diff options
author | Thomas Adam <thomas@xteddy.org> | 2021-10-13 14:01:16 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2021-10-13 14:01:16 +0100 |
commit | fb23df679b31418dbef21bc7b98c891ee3a48d42 (patch) | |
tree | 5d685379ae3b1114a348707fd57fd0ef440e9b88 /options-table.c | |
parent | aff2a473ec3c16396d6be9d61c5e5dc1201a725b (diff) | |
parent | 837ca176d1874273f3de615c75b506e1b1787a1b (diff) | |
download | rtmux-fb23df679b31418dbef21bc7b98c891ee3a48d42.tar.gz rtmux-fb23df679b31418dbef21bc7b98c891ee3a48d42.tar.bz2 rtmux-fb23df679b31418dbef21bc7b98c891ee3a48d42.zip |
Merge branch 'obsd-master' into master
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/options-table.c b/options-table.c index 76c2b053..b63ae117 100644 --- a/options-table.c +++ b/options-table.c @@ -981,6 +981,24 @@ const struct options_table_entry options_table[] = { .text = "The default colour palette for colours zero to 255." }, + { .name = "popup-style", + .type = OPTIONS_TABLE_STRING, + .scope = OPTIONS_TABLE_WINDOW, + .default_str = "default", + .flags = OPTIONS_TABLE_IS_STYLE, + .separator = ",", + .text = "Default style of popups." + }, + + { .name = "popup-border-style", + .type = OPTIONS_TABLE_STRING, + .scope = OPTIONS_TABLE_WINDOW, + .default_str = "default", + .flags = OPTIONS_TABLE_IS_STYLE, + .separator = ",", + .text = "Default style of popup borders." + }, + { .name = "remain-on-exit", .type = OPTIONS_TABLE_CHOICE, .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, |