mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 00:41:17 +02:00
neutrino: adapt to the framebuffer_spark blitter change
basically add fb->blit() in every widget where necessary to make sure the framebuffer is updated with current content
This commit is contained in:
@@ -815,6 +815,7 @@ int EpgPlus::exec (CChannelList * pchannelList, int selectedChannelIndex, CBouqu
|
||||
this->footer->paintButtons (buttonLabels, sizeof (buttonLabels) / sizeof (button_label));
|
||||
|
||||
this->paint();
|
||||
frameBuffer->blit();
|
||||
|
||||
uint64_t timeoutEnd = CRCInput::calcTimeoutEnd (g_settings.timing[SNeutrinoSettings::TIMING_CHANLIST]);
|
||||
bool loop = true;
|
||||
@@ -1148,6 +1149,7 @@ int EpgPlus::exec (CChannelList * pchannelList, int selectedChannelIndex, CBouqu
|
||||
loop = false;
|
||||
else if (this->refreshFooterButtons)
|
||||
this->footer->paintButtons (buttonLabels, sizeof (buttonLabels) / sizeof (button_label));
|
||||
frameBuffer->blit();
|
||||
}
|
||||
|
||||
this->hide();
|
||||
@@ -1186,6 +1188,7 @@ EpgPlus::TCChannelEventEntries::const_iterator EpgPlus::getSelectedEvent() const
|
||||
void EpgPlus::hide()
|
||||
{
|
||||
this->frameBuffer->paintBackgroundBoxRel (this->usableScreenX, this->usableScreenY, this->usableScreenWidth, this->usableScreenHeight);
|
||||
frameBuffer->blit();
|
||||
}
|
||||
|
||||
void EpgPlus::paintChannelEntry (int position)
|
||||
|
Reference in New Issue
Block a user