mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 17:01:15 +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:
@@ -352,6 +352,7 @@ const CBookmark * CBookmarkManager::getBookmark(CMenuTarget* parent)
|
||||
res = menu_return::RETURN_EXIT_ALL;
|
||||
}
|
||||
}
|
||||
frameBuffer->blit();
|
||||
}
|
||||
hide();
|
||||
|
||||
@@ -406,6 +407,7 @@ void CBookmarkManager::paintItem(int pos)
|
||||
CVFD::getInstance()->showMenuText(1, theBookmark.getUrl(), -1, true); // UTF-8
|
||||
}
|
||||
}
|
||||
frameBuffer->blit();
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------
|
||||
@@ -415,6 +417,7 @@ void CBookmarkManager::hide()
|
||||
if (visible)
|
||||
{
|
||||
frameBuffer->paintBackgroundBoxRel(x, y, width, height+ info_height+ 5);
|
||||
frameBuffer->blit();
|
||||
visible = false;
|
||||
}
|
||||
}
|
||||
@@ -481,5 +484,6 @@ void CBookmarkManager::paint()
|
||||
|
||||
paintFoot();
|
||||
visible = true;
|
||||
frameBuffer->blit();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user