From a3c1488ad2ffbb9598efa63714e7260209d1a053 Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Wed, 7 Sep 2016 20:10:04 +0100 Subject: [PATCH] Don't create a maximized window As we have a static window size for now we can't maximize to the whole screen size. --- src/anbox/ubuntu/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/anbox/ubuntu/window.cpp b/src/anbox/ubuntu/window.cpp index fd394cf..8a057bb 100644 --- a/src/anbox/ubuntu/window.cpp +++ b/src/anbox/ubuntu/window.cpp @@ -341,7 +341,7 @@ Window::Window(const std::shared_ptr &input_manager, SDL_WINDOWPOS_UNDEFINED, width, height, - SDL_WINDOW_OPENGL | SDL_WINDOW_MAXIMIZED); + SDL_WINDOW_OPENGL); if (!window_) { const auto message = utils::string_format("Failed to create window: %s", SDL_GetError()); BOOST_THROW_EXCEPTION(std::runtime_error(message));