diff options
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | displaychannel.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -229,3 +229,5 @@ Version 0.1.4 - fixed an possible uninitialised variable in recordings menu - fixed a bug that epg info is not displayed in schedules menu if fade in is set to zero +- fixed a bug that poster or banner is not displayed in displayChannel + if fade in is set to zero diff --git a/displaychannel.c b/displaychannel.c index ce04d3f..96b9b11 100644 --- a/displaychannel.c +++ b/displaychannel.c @@ -708,7 +708,7 @@ void cNopacityDisplayChannel::DrawPoster(const cEvent *event) { config.channelBorderBottom, mediaWidth + 2*config.channelBorderVertical, mediaHeight + 2*config.channelBorderBottom)); - if (initial) + if (initial && config.channelFadeTime) pixmapPoster->SetAlpha(0); cImageLoader imgLoader; if (imgLoader.LoadPoster(call.media.path.c_str(), mediaWidth, mediaHeight)) { |