mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-07 13:48:35 +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:
@@ -381,6 +381,7 @@ int CStringInput::exec( CMenuTarget* parent, const std::string & )
|
||||
strncpy(oldval, value, size);
|
||||
|
||||
paint();
|
||||
frameBuffer->blit();
|
||||
|
||||
uint64_t timeoutEnd = CRCInput::calcTimeoutEnd(g_settings.timing[SNeutrinoSettings::TIMING_MENU] == 0 ? 0xFFFF : g_settings.timing[SNeutrinoSettings
|
||||
::TIMING_MENU]);
|
||||
@@ -489,6 +490,7 @@ int CStringInput::exec( CMenuTarget* parent, const std::string & )
|
||||
}
|
||||
}
|
||||
}
|
||||
frameBuffer->blit();
|
||||
}
|
||||
|
||||
hide();
|
||||
@@ -526,6 +528,7 @@ int CStringInput::handleOthers(const neutrino_msg_t /*msg*/, const neutrino_msg_
|
||||
void CStringInput::hide()
|
||||
{
|
||||
frameBuffer->paintBackgroundBoxRel(x, y, width, height + footerHeight);
|
||||
frameBuffer->blit();
|
||||
}
|
||||
|
||||
const char * CStringInput::getHint1(void)
|
||||
|
Reference in New Issue
Block a user