diff options
author | nicm <nicm> | 2019-04-02 18:41:24 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2019-04-02 22:20:36 +0100 |
commit | 8968acd678d14cf1ff820ad829d06ca93c2047f1 (patch) | |
tree | cd5c4e7b20cad46163b0c0519f9c2c98b49748f7 | |
parent | 916c4c499de80025eb732e1b26ffda7f06abaa45 (diff) | |
download | rtmux-8968acd678d14cf1ff820ad829d06ca93c2047f1.tar.gz rtmux-8968acd678d14cf1ff820ad829d06ca93c2047f1.tar.bz2 rtmux-8968acd678d14cf1ff820ad829d06ca93c2047f1.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 541e66f2..1301f92d 100644 --- a/options-table.c +++ b/options-table.c @@ -82,7 +82,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}}, " \ @@ -103,7 +104,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}}, " \ |