diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | displaychannel.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -328,3 +328,4 @@ Version 0.1.4 - Avoided font pixelation on default menu items - Searching for epgimages named eventID.jpg and eventID_0.jpg in detailed epg view +- Fixed clearing pixmap in displaychannel if no epg is available diff --git a/displaychannel.c b/displaychannel.c index 1400de8..ed3d011 100644 --- a/displaychannel.c +++ b/displaychannel.c @@ -59,6 +59,7 @@ void cNopacityDisplayChannel::SetChannel(const cChannel *Channel, int Number) { channelView->ClearChannelLogo(); channelView->ClearChannelName(); + channelView->ClearEPGInfo(); channelView->ClearStatusIcons(); channelView->ClearSourceInfo(); if (!groupSep) { @@ -72,7 +73,6 @@ void cNopacityDisplayChannel::SetChannel(const cChannel *Channel, int Number) { } else { channelView->HideSignalMeter(); channelView->ClearProgressBar(); - channelView->ClearEPGInfo(); if (Channel) channelView->DrawChannelGroups(Channel, ChannelName); } |