Null: Fix window/framebuffer size event order

This commit is contained in:
Camilla Löwy 2024-02-16 12:25:13 +01:00
parent f0ec791386
commit a53ce7e8b8

View File

@ -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);
}
}