diff options
author | nicm <nicm> | 2014-04-17 07:36:45 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-04-17 07:36:45 +0000 |
commit | 992ef70fb696d648b3ec6ed97642fd79a8392baf (patch) | |
tree | b37b31dd9241614b8cb558f614163e69b3403f90 /options-table.c | |
parent | 5acee1c04ed38afd6a32da4a66e6855ccdc52af3 (diff) | |
download | rtmux-992ef70fb696d648b3ec6ed97642fd79a8392baf.tar.gz rtmux-992ef70fb696d648b3ec6ed97642fd79a8392baf.tar.bz2 rtmux-992ef70fb696d648b3ec6ed97642fd79a8392baf.zip |
Remove the monitor-content option and associated bits and bobs. It's
never worked very well. If there is a big demand for it to return, will
consider better ways to do it.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/options-table.c b/options-table.c index bc25573a..a46f5ce6 100644 --- a/options-table.c +++ b/options-table.c @@ -491,11 +491,6 @@ const struct options_table_entry session_options_table[] = { .default_num = 0 }, - { .name = "visual-content", - .type = OPTIONS_TABLE_FLAG, - .default_num = 0 - }, - { .name = "visual-silence", .type = OPTIONS_TABLE_FLAG, .default_num = 0 @@ -629,11 +624,6 @@ const struct options_table_entry window_options_table[] = { .default_num = 0 }, - { .name = "monitor-content", - .type = OPTIONS_TABLE_STRING, - .default_str = "" - }, - { .name = "monitor-silence", .type = OPTIONS_TABLE_NUMBER, .minimum = 0, @@ -735,29 +725,6 @@ const struct options_table_entry window_options_table[] = { .style = "window-status-style" }, - { .name = "window-status-content-attr", - .type = OPTIONS_TABLE_ATTRIBUTES, - .default_num = GRID_ATTR_REVERSE, - .style = "window-status-content-style" - }, - - { .name = "window-status-content-bg", - .type = OPTIONS_TABLE_COLOUR, - .default_num = 8, - .style = "window-status-content-style" - }, - - { .name = "window-status-content-fg", - .type = OPTIONS_TABLE_COLOUR, - .default_num = 8, - .style = "window-status-content-style" - }, - - { .name = "window-status-content-style", - .type = OPTIONS_TABLE_STYLE, - .default_str = "reverse" - }, - { .name = "window-status-current-attr", .type = OPTIONS_TABLE_ATTRIBUTES, .default_num = 0, |