diff options
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 082b43c..e8389fa 100644 --- a/displaychannel.c +++ b/displaychannel.c @@ -567,6 +567,8 @@ void cNopacityDisplayChannel::SetChannel(const cChannel *Channel, int Number) { cImageLoader imgLoader; if (imgLoader.LoadLogo(*ChannelName)) { pixmapLogo->DrawImage(cPoint(config.logoBorder, (height-config.logoHeight)/2), imgLoader.GetImage()); + } else if (imgLoader.LoadLogo(*(Channel->GetChannelID().ToString()))) { + pixmapLogo->DrawImage(cPoint(config.logoBorder, (height-config.logoHeight)/2), imgLoader.GetImage()); } } ShowSignalMeter(); |