Null: Fix window/framebuffer size event order

master
Camilla Löwy ago%!(EXTRA string=1 year)
parent f0ec791386
commit a53ce7e8b8
  1. 2
      src/null_window.c

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

Loading…
Cancel
Save