diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-01-27 12:53:35 +0100 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-01-27 12:53:35 +0100 |
commit | db33e4e175369e6f1e8f9dab69e4c43b95f54e96 (patch) | |
tree | d7e16fdd38486ca90ed82108802e236da091c694 /displaychannel.c | |
parent | 3c39f01cf5b4e8e26d8cfc2fc608df13d038eee6 (diff) | |
download | skin-nopacity-db33e4e175369e6f1e8f9dab69e4c43b95f54e96.tar.gz skin-nopacity-db33e4e175369e6f1e8f9dab69e4c43b95f54e96.tar.bz2 |
Fixed a crash when starting VDR when a message should be displayed after the timer conflict check
Diffstat (limited to 'displaychannel.c')
-rw-r--r-- | displaychannel.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/displaychannel.c b/displaychannel.c index 736327f..349c3a5 100644 --- a/displaychannel.c +++ b/displaychannel.c @@ -114,6 +114,8 @@ void cNopacityDisplayChannel::SetProgressBar(const cEvent *present) { void cNopacityDisplayChannel::SetMessage(eMessageType Type, const char *Text) { + if (!doOutput) + return; channelView->ClearChannelLogo(); channelView->ClearChannelName(); channelView->ClearEPGInfo(); |