aboutsummaryrefslogtreecommitdiff
path: root/gui/gui-manager.cpp
diff options
context:
space:
mode:
authorAlexander Tkachev2016-06-22 17:29:01 +0600
committerEugene Sandulenko2016-07-03 12:17:43 +0200
commit31e528c070d14baf62dc1e8570075425a2efbb42 (patch)
tree16a2bfb93fc0ac9f2d72e806489ae179f1f85117 /gui/gui-manager.cpp
parent425d963bd3c927e529efdfed817960dec8de4552 (diff)
downloadscummvm-rg350-31e528c070d14baf62dc1e8570075425a2efbb42.tar.gz
scummvm-rg350-31e528c070d14baf62dc1e8570075425a2efbb42.tar.bz2
scummvm-rg350-31e528c070d14baf62dc1e8570075425a2efbb42.zip
GUI: Make ScrollContainerWidget do full redraw
Diffstat (limited to 'gui/gui-manager.cpp')
-rw-r--r--gui/gui-manager.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/gui/gui-manager.cpp b/gui/gui-manager.cpp
index 3ce8bee020..9acd9434ff 100644
--- a/gui/gui-manager.cpp
+++ b/gui/gui-manager.cpp
@@ -564,6 +564,12 @@ void GuiManager::processEvent(const Common::Event &event, Dialog *const activeDi
}
}
+void GuiManager::doFullRedraw() {
+ _redrawStatus = kRedrawFull;
+ redraw();
+ _system->updateScreen();
+}
+
void GuiManager::giveFocusToDialog(Dialog *dialog) {
int16 dialogX = _globalMousePosition.x - dialog->_x;
int16 dialogY = _globalMousePosition.y - dialog->_y;