Fix display issue

This commit is contained in:
Joachim LF
2021-01-22 17:56:58 +01:00
parent 134f1da4b0
commit 917e753426
3 changed files with 4 additions and 4 deletions

View File

@@ -387,8 +387,8 @@ OnBoarding::PromptController * AppsContainer::promptController() {
return &m_promptController;
}
void AppsContainer::redrawWindow() {
m_window.redraw();
void AppsContainer::redrawWindow(bool force) {
m_window.redraw(force);
}
void AppsContainer::activateExamMode(GlobalPreferences::ExamMode examMode) {