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:
Stefan Seyfried
2012-04-01 12:57:38 +02:00
parent ca873b609f
commit a029333c1a
36 changed files with 134 additions and 7 deletions

View File

@@ -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();
}