From b8754b03ee58576511ea35ac627420c36a88d43b Mon Sep 17 00:00:00 2001 From: louis Date: Mon, 23 Dec 2013 09:12:19 +0100 Subject: Added feature to jump to a specific channel with number keys --- imagecache.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'imagecache.c') diff --git a/imagecache.c b/imagecache.c index 9196955..9ddbd04 100644 --- a/imagecache.c +++ b/imagecache.c @@ -9,6 +9,18 @@ cImageCache::cImageCache() : cImageMagickWrapper() { tempStaticLogo = NULL; + groupsHead = NULL; + groupsBottom = NULL; + groupsLeft = NULL; + groupsRight = NULL; + imgLeft = NULL; + imgLeftActive = NULL; + imgRight = NULL; + imgRightActive = NULL; + imgHead = NULL; + imgHeadActive = NULL; + imgBottom = NULL; + imgBottomActive = NULL; } cImageCache::~cImageCache() { @@ -110,6 +122,11 @@ void cImageCache::CreateOsdIconCache(void) { success = LoadIcon("osdElements/epgview_header"); if (success) InsertIntoOsdElementCache(oeEpgHeader, geoManager.osdWidth, geoManager.epgViewHeaderHeight); + + //Channel Jump + success = LoadIcon("osdElements/channel_jump"); + if (success) + InsertIntoOsdElementCache(oeChannelJump, geoManager.channelJumpWidth, geoManager.channelJumpHeight); } void cImageCache::PrepareGridIconCache(void) { -- cgit v1.2.3