mirror of
https://github.com/glfw/glfw.git
synced 2025-04-05 05:25:07 +00:00
Null: Fix window/framebuffer size event order
This commit is contained in:
parent
f0ec791386
commit
a53ce7e8b8
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue