From 98e64b5deea21dea94217c14d9af54fa0217f7ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 16 Nov 2019 10:13:34 +0100 Subject: [PATCH] Platform: make the GlfwApplication test app resizable. --- src/Magnum/Platform/Test/GlfwApplicationTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/Platform/Test/GlfwApplicationTest.cpp b/src/Magnum/Platform/Test/GlfwApplicationTest.cpp index ad9c6311f..ea0761dcb 100644 --- a/src/Magnum/Platform/Test/GlfwApplicationTest.cpp +++ b/src/Magnum/Platform/Test/GlfwApplicationTest.cpp @@ -30,7 +30,7 @@ namespace Magnum { namespace Platform { namespace Test { namespace { struct GlfwApplicationTest: Platform::Application { - explicit GlfwApplicationTest(const Arguments& arguments): Platform::Application{arguments} { + explicit GlfwApplicationTest(const Arguments& arguments): Platform::Application{arguments, Configuration{}.setWindowFlags(Configuration::WindowFlag::Resizable)} { Debug{} << "window size" << windowSize() #ifdef MAGNUM_TARGET_GL << framebufferSize()