aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/windows.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/windows.cpp')
-rw-r--r--engines/glk/windows.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/glk/windows.cpp b/engines/glk/windows.cpp
index 32f2868b7e..c1ed50ad17 100644
--- a/engines/glk/windows.cpp
+++ b/engines/glk/windows.cpp
@@ -741,6 +741,7 @@ void Window::bringToFront() {
if (pairWin && pairWin->_dir == winmethod_Arbitrary && pairWin->_children.back() != this) {
pairWin->_children.remove(this);
pairWin->_children.push_back(this);
+ Windows::_forceRedraw = true;
}
}
@@ -750,6 +751,7 @@ void Window::sendToBack() {
if (pairWin && pairWin->_dir == winmethod_Arbitrary && pairWin->_children.front() != this) {
pairWin->_children.remove(this);
pairWin->_children.insert_at(0, this);
+ Windows::_forceRedraw = true;
}
}