diff options
Diffstat (limited to 'displaychannelview.c')
-rw-r--r-- | displaychannelview.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/displaychannelview.c b/displaychannelview.c index baf1c68..daf8c71 100644 --- a/displaychannelview.c +++ b/displaychannelview.c @@ -144,12 +144,8 @@ void cNopacityDisplayChannelView::CreatePixmaps(void) { geoManager->channelFooterHeight) ); - if (config.GetValue("channelFadeTime")) { - SetAlpha(0); - } else { - int alphaBack = (100 - config.GetValue("channelBackgroundTransparency"))*255/100; - pixmapBackground->SetAlpha(alphaBack); - } + int alphaBack = (100 - config.GetValue("channelBackgroundTransparency"))*255/100; + pixmapBackground->SetAlpha(alphaBack); } void cNopacityDisplayChannelView::SetAlpha(int alpha) { |