diff options
author | nicm <nicm> | 2019-04-02 18:41:24 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-04-02 18:41:24 +0000 |
commit | 09f71ed1b24a875e2747583dee0008765df9e74f (patch) | |
tree | e568acafdce4457e18c71472ebbedb7020e5cd86 | |
parent | 7bcc0d16f24506bed6568ba36bcd278cfc06d069 (diff) | |
download | rtmux-09f71ed1b24a875e2747583dee0008765df9e74f.tar.gz rtmux-09f71ed1b24a875e2747583dee0008765df9e74f.tar.bz2 rtmux-09f71ed1b24a875e2747583dee0008765df9e74f.zip |
Silence flag should use the same option as activity, reported by Thomas
Sattler.
-rw-r--r-- | options-table.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/options-table.c b/options-table.c index b3bc84da..fc72c3a9 100644 --- a/options-table.c +++ b/options-table.c @@ -83,7 +83,8 @@ static const char *options_table_window_size_list[] = { "#{?#{&&:#{window_bell_flag}," \ "#{!=:#{window-status-bell-style},default}}, " \ "#{window-status-bell-style}," \ - "#{?#{&&:#{window_activity_flag}," \ + "#{?#{&&:#{||:#{window_activity_flag}," \ + "#{window_silence_flag}}," \ "#{!=:" \ "#{window-status-activity-style}," \ "default}}, " \ @@ -104,7 +105,8 @@ static const char *options_table_window_size_list[] = { "#{?#{&&:#{window_bell_flag}," \ "#{!=:#{window-status-bell-style},default}}, " \ "#{window-status-bell-style}," \ - "#{?#{&&:#{window_activity_flag}," \ + "#{?#{&&:#{||:#{window_activity_flag}," \ + "#{window_silence_flag}}," \ "#{!=:" \ "#{window-status-activity-style}," \ "default}}, " \ |