summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--displaychannel.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index fd17ab9..47f9b69 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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);
}