From 8f690690ab9ddfe9b4ba5bc981f7113e43cbab6d Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sun, 6 Jan 2019 13:22:49 +0100 Subject: [PATCH] Adjust window flags --- src/launcher/launcher.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/launcher/launcher.cpp b/src/launcher/launcher.cpp index fe9a9c2..077dad0 100644 --- a/src/launcher/launcher.cpp +++ b/src/launcher/launcher.cpp @@ -59,8 +59,7 @@ void launcher::create_settings_menu() return DefWindowProcA(*window, message, w_param, l_param); }); - this->settings_window_.create("Open-IW5 Settings", 400, 200, - WS_OVERLAPPEDWINDOW & ~(WS_THICKFRAME | WS_MAXIMIZEBOX | WS_MINIMIZEBOX)); + this->settings_window_.create("Open-IW5 Settings", 400, 200, WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU); this->settings_window_.load_html(load_content(MENU_SETTINGS)); }