summaryrefslogtreecommitdiff
path: root/imagecache.c
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-11-21 16:39:57 +0100
committerlouis <louis.braun@gmx.de>2013-11-21 16:39:57 +0100
commitbc41e8a2f504ceb892ba017d2acdd637523ef2d7 (patch)
tree210359abb5cb286ec93b1f1a90fd3ba8a5156c2a /imagecache.c
parent7e4ca99c2e46366306d31f417cb8bb470e517df6 (diff)
downloadskin-nopacity-bc41e8a2f504ceb892ba017d2acdd637523ef2d7.tar.gz
skin-nopacity-bc41e8a2f504ceb892ba017d2acdd637523ef2d7.tar.bz2
Added logo backgrounds in displaychannel also for blended themes
Diffstat (limited to 'imagecache.c')
-rw-r--r--imagecache.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/imagecache.c b/imagecache.c
index 9fb1690..52a7992 100644
--- a/imagecache.c
+++ b/imagecache.c
@@ -471,6 +471,13 @@ void cImageCache::CreateSkinElementsBlended(void) {
bool mirrorHeader = (config.GetValue("menuAdjustLeft")) ? false : true;
CreateBackground(Theme.Color(clrMenuHeaderBlend), Theme.Color(clrMenuHeader), geoManager->osdWidth, geoManager->menuHeaderHeight, mirrorHeader);
InsertIntoSkinElementCache(seMenuHeader);
+
+ //ChannelLogo Background
+ std::string imgChannelLogoBack = "skinElements/channellogoback";
+ bool success = LoadIcon(ctSkinElement, imgChannelLogoBack);
+ if (success)
+ InsertIntoSkinElementCache(seChannelLogoBack, geoManager->channelLogoWidth, geoManager->channelLogoHeight);
+
}
void cImageCache::CreateSkinElementsGraphics(void) {