Merge remote-tracking branch 'n/cst-next-fixed'

Origin commit data
------------------
Branch: ni/coolstream
Commit: f5c72d35c8
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2016-01-24 (Sun, 24 Jan 2016)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2016-01-24 13:15:43 +01:00
58 changed files with 627 additions and 171 deletions

View File

@@ -1467,7 +1467,7 @@ void CChannelList::virtual_zap_mode(bool up)
break;
}
}
g_InfoViewer->clearVirtualZapMode();
g_InfoViewer->resetSwitchMode(); //disable virtual_zap_mode
if (doZap) {
if(g_settings.timing[SNeutrinoSettings::TIMING_INFOBAR] == 0)
@@ -2066,8 +2066,10 @@ void CChannelList::paint()
void CChannelList::paintHead()
{
if (header == NULL)
if (header == NULL){
header = new CComponentsHeader();
header->getTextObject()->enableTboxSaveScreen(g_settings.theme.menu_Head_gradient);//enable screen save for title text if color gradient is in use
}
header->setDimensionsAll(x, y, full_width, theight);
@@ -2104,7 +2106,7 @@ void CChannelList::paintHead()
else
logo_off = 10;
header->paint(CC_SAVE_SCREEN_NO);
header->paint(CC_SAVE_SCREEN_NO); //TODO: paint title only, currently paint() does paint all enabled header items at once and causes flicker effects in unchanged items (e.g. clock)
}
CComponentsHeader* CChannelList::getHeaderObject()