Browse Source

You can have a borderless resizable window

Sam Lantinga 7 years ago
parent
commit
20c5bc9135
1 changed files with 7 additions and 3 deletions
  1. 7 3
      src/video/windows/SDL_windowswindow.c

+ 7 - 3
src/video/windows/SDL_windowswindow.c

@@ -65,10 +65,14 @@ GetWindowStyle(SDL_Window * window)
 
     if (window->flags & SDL_WINDOW_FULLSCREEN) {
         style |= STYLE_FULLSCREEN;
-    } else if (window->flags & SDL_WINDOW_BORDERLESS) {
-        style |= STYLE_BORDERLESS;
     } else {
-        style |= STYLE_NORMAL;
+        if (window->flags & SDL_WINDOW_BORDERLESS) {
+            style |= STYLE_BORDERLESS;
+        } else {
+            style |= STYLE_NORMAL;
+        }
+
+        /* You can have a borderless resizable window */
         if (window->flags & SDL_WINDOW_RESIZABLE) {
             style |= STYLE_RESIZABLE;
         }