Selaa lähdekoodia

Null: Fix window/framebuffer size event order

Camilla Löwy 1 vuosi sitten
vanhempi
commit
a53ce7e8b8
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/null_window.c

+ 1 - 1
src/null_window.c

@@ -258,8 +258,8 @@ void _glfwSetWindowSizeNull(_GLFWwindow* window, int width, int height)
     {
         window->null.width = width;
         window->null.height = height;
-        _glfwInputWindowSize(window, width, height);
         _glfwInputFramebufferSize(window, width, height);
+        _glfwInputWindowSize(window, width, height);
     }
 }