summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-11-01 14:31:31 +0100
committerlouis <louis.braun@gmx.de>2013-11-01 14:31:31 +0100
commit802795f189da1f700cbd945a50b99161d7692e2d (patch)
treede3953aaed47b01a3037f8050ac33fe526f28146
parent18518f3cf10874cc4ce5c2f58f8aec6b645b40c8 (diff)
downloadskin-nopacity-802795f189da1f700cbd945a50b99161d7692e2d.tar.gz
skin-nopacity-802795f189da1f700cbd945a50b99161d7692e2d.tar.bz2
Fixed clearing pixmap in displaychannel if no epg is available
-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);
}