From 8807f6dd635aa2003f6a1e7afad3ec4fea04ff78 Mon Sep 17 00:00:00 2001 From: VoxelTek <53562267+VoxelTek@users.noreply.github.com> Date: Wed, 2 Jul 2025 23:06:28 +1000 Subject: [PATCH] Add resizable property to window creation Add resizable property to window creation. Allows Close button to be present in some cases where it did not appear. --- ISLE/isleapp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ISLE/isleapp.cpp b/ISLE/isleapp.cpp index e12f9183..dd45a1b0 100644 --- a/ISLE/isleapp.cpp +++ b/ISLE/isleapp.cpp @@ -661,6 +661,7 @@ MxResult IsleApp::SetupWindow() SDL_SetNumberProperty(props, SDL_PROP_WINDOW_CREATE_WIDTH_NUMBER, g_targetWidth); SDL_SetNumberProperty(props, SDL_PROP_WINDOW_CREATE_HEIGHT_NUMBER, g_targetHeight); SDL_SetBooleanProperty(props, SDL_PROP_WINDOW_CREATE_FULLSCREEN_BOOLEAN, m_fullScreen); + SDL_SetBooleanProperty(props, SDL_PROP_WINDOW_CREATE_RESIZABLE_BOOLEAN, true); SDL_SetStringProperty(props, SDL_PROP_WINDOW_CREATE_TITLE_STRING, WINDOW_TITLE); #if defined(MINIWIN) && !defined(__3DS__) SDL_SetBooleanProperty(props, SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN, true);