diff options
Diffstat (limited to 'src/gui/widgets/window.cpp')
-rw-r--r-- | src/gui/widgets/window.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/widgets/window.cpp b/src/gui/widgets/window.cpp index 0ffae6ea..e36aea97 100644 --- a/src/gui/widgets/window.cpp +++ b/src/gui/widgets/window.cpp @@ -279,6 +279,14 @@ void Window::widgetResized(const gcn::Event &event) } } +void Window::widgetHidden(const gcn::Event &event) +{ + if (gui) + { + gui->setCursorType(Gui::CURSOR_POINTER); + } +} + void Window::setCloseButton(bool flag) { mCloseButton = flag; |