CBEChannelWidget: remove not required hide()

Avoids unnecessary flicker effects, it's enough to repaint only text.
This commit is contained in:
2015-01-03 00:06:37 +01:00
parent e58b86f38f
commit 1a4d06175f

View File

@@ -250,21 +250,15 @@ void CBEChannelWidget::initItem2DetailsLine (int pos, int /*ch_index*/)
dline->setYPos(ypos1a);
//infobox
if (ibox == NULL)
if (ibox == NULL){
ibox = new CComponentsInfoBox();
if (ibox->isPainted())
ibox->hide(CC_SAVE_SCREEN_NO);
ibox->setDimensionsAll(x, ypos2, width, info_height);
ibox->setFrameThickness(2);
#if 0
ibox->paint(false,true);
#endif
ibox->setCorner(RADIUS_LARGE);
ibox->setShadowOnOff(CC_SHADOW_OFF);
}
}
}
void CBEChannelWidget::clearItem2DetailsLine()
{