diff options
Diffstat (limited to 'src/gui/widgets/tabs/setup_video.cpp')
-rw-r--r-- | src/gui/widgets/tabs/setup_video.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/widgets/tabs/setup_video.cpp b/src/gui/widgets/tabs/setup_video.cpp index 439765260..54b17396a 100644 --- a/src/gui/widgets/tabs/setup_video.cpp +++ b/src/gui/widgets/tabs/setup_video.cpp @@ -27,6 +27,8 @@ #include "graphicsmanager.h" +#include "gui/windowmanager.h" + #include "gui/windows/okdialog.h" #include "gui/windows/textdialog.h" @@ -360,7 +362,7 @@ void Setup_Video::action(const ActionEvent &event) if (intToRenderType(config.getIntValue("opengl")) == RENDER_SOFTWARE) { - client->resizeVideo(width, height, false); + WindowManager::resizeVideo(width, height, false); } else { @@ -385,7 +387,7 @@ void Setup_Video::action(const ActionEvent &event) } #else mainGraphics->setWindowSize(width, height); - client->resizeVideo(width, height, false); + WindowManager::resizeVideo(width, height, false); #endif } |