Null: Fix missing damage event

This commit is contained in:
Camilla Löwy 2024-02-16 12:29:54 +01:00
parent a53ce7e8b8
commit 64b4f0f30c

View File

@ -259,6 +259,7 @@ void _glfwSetWindowSizeNull(_GLFWwindow* window, int width, int height)
window->null.width = width;
window->null.height = height;
_glfwInputFramebufferSize(window, width, height);
_glfwInputWindowDamage(window);
_glfwInputWindowSize(window, width, height);
}
}