diff options
author | louis <louis.braun@gmx.de> | 2013-11-01 14:31:31 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-11-01 14:31:31 +0100 |
commit | 802795f189da1f700cbd945a50b99161d7692e2d (patch) | |
tree | de3953aaed47b01a3037f8050ac33fe526f28146 | |
parent | 18518f3cf10874cc4ce5c2f58f8aec6b645b40c8 (diff) | |
download | skin-nopacity-802795f189da1f700cbd945a50b99161d7692e2d.tar.gz skin-nopacity-802795f189da1f700cbd945a50b99161d7692e2d.tar.bz2 |
Fixed clearing pixmap in displaychannel if no epg is available
-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); } |