Clock on infoviewer and channellist: Fix background paint...

...when switching between OneColor und ColorToColor
This commit is contained in:
M. Liebmann
2015-05-09 09:50:39 +02:00
parent 56070ca390
commit 95a27ebb31
2 changed files with 10 additions and 6 deletions

View File

@@ -2064,7 +2064,8 @@ void CChannelList::paint()
void CChannelList::paintHead()
{
static int gradient = g_settings.theme.menu_Head_gradient;
static int gradient_head = g_settings.theme.menu_Head_gradient;
static int gradient_c2c = g_settings.theme.gradient_c2c;
CComponentsHeader header(x, y, full_width, theight, name /*no header icon*/);
if (bouquet && bouquet->zapitBouquet && bouquet->zapitBouquet->bLocked != g_settings.parentallock_defaultlocked)
@@ -2074,8 +2075,9 @@ void CChannelList::paintHead()
header.paint(CC_SAVE_SCREEN_NO);
if (gradient != g_settings.theme.menu_Head_gradient && headerClock != NULL) {
gradient = g_settings.theme.menu_Head_gradient;
if ((gradient_head != g_settings.theme.menu_Head_gradient || gradient_c2c != g_settings.theme.gradient_c2c) && headerClock != NULL) {
gradient_head = g_settings.theme.menu_Head_gradient;
gradient_c2c = g_settings.theme.gradient_c2c;
headerClock->clearSavedScreen();
delete headerClock;
headerClock = NULL;
@@ -2086,8 +2088,8 @@ void CChannelList::paintHead()
headerClock = new CComponentsFrmClock(0, 0, 0, 0, "%H:%M", true);
headerClock->setClockBlink("%H %M");
headerClock->setClockIntervall(1);
headerClock->doPaintBg(!gradient);
headerClock->enableTboxSaveScreen(gradient);
headerClock->doPaintBg(!gradient_head);
headerClock->enableTboxSaveScreen(gradient_head);
headerClock->setCorner(RADIUS_LARGE, CORNER_TOP_RIGHT);
}
headerClock->setClockFont(SNeutrinoSettings::FONT_TYPE_MENU_TITLE);

View File

@@ -248,9 +248,11 @@ void CInfoViewer::initClock()
{
static int gradient_top = g_settings.theme.infobar_gradient_top;
static int gradient_c2c = g_settings.theme.gradient_c2c;
if (gradient_top != g_settings.theme.infobar_gradient_top && clock != NULL) {
if ((gradient_top != g_settings.theme.infobar_gradient_top || gradient_c2c != g_settings.theme.gradient_c2c) && clock != NULL) {
gradient_top = g_settings.theme.infobar_gradient_top;
gradient_c2c = g_settings.theme.gradient_c2c;
clock->clearSavedScreen();
delete clock;
clock = NULL;