diff options
-rw-r--r-- | displaychannel.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/displaychannel.c b/displaychannel.c index fa6964e..73ccc73 100644 --- a/displaychannel.c +++ b/displaychannel.c @@ -164,9 +164,10 @@ void cNopacityDisplayChannel::Flush(void) { } else channelView->HideSignalMeter(); - if (config.GetValue("displaySourceInfo") && !groupSep) - channelView->DrawSourceInfo(); - else + if (config.GetValue("displaySourceInfo") && !groupSep) { + channelView->ClearSourceInfo(); + channelView->DrawSourceInfo(); + } else channelView->ClearSourceInfo(); if (initial) { |