remove all fb->blit() calls

TODO: check if plugins etc. need extra treatment
This commit is contained in:
Stefan Seyfried
2013-09-28 13:01:03 +02:00
parent 116aba09b0
commit c68ffa2155
39 changed files with 6 additions and 147 deletions

View File

@@ -357,7 +357,6 @@ const CBookmark * CBookmarkManager::getBookmark(CMenuTarget* parent)
res = menu_return::RETURN_EXIT_ALL;
}
}
frameBuffer->blit();
}
hide();
@@ -412,7 +411,6 @@ void CBookmarkManager::paintItem(int pos)
CVFD::getInstance()->showMenuText(1, theBookmark.getUrl(), -1, true); // UTF-8
}
}
frameBuffer->blit();
}
//------------------------------------------------------------------------
@@ -422,7 +420,6 @@ void CBookmarkManager::hide()
if (visible)
{
frameBuffer->paintBackgroundBoxRel(x, y, width, height+ info_height+ 5);
frameBuffer->blit();
visible = false;
}
}
@@ -489,6 +486,5 @@ void CBookmarkManager::paint()
paintFoot();
visible = true;
frameBuffer->blit();
}