diff options
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index fd8f38ea..17f4897d 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -220,14 +220,14 @@ void Gui::draw() mGraphics->popClipArea(); } -void Gui::videoResized() +void Gui::videoResized(int width, int height) { auto *top = static_cast<WindowContainer*>(getTop()); int oldWidth = top->getWidth(); int oldHeight = top->getHeight(); - top->setSize(graphics->getWidth(), graphics->getHeight()); + top->setSize(width, height); top->adjustAfterResize(oldWidth, oldHeight); } |