Fix window size update

This commit is contained in:
M374LX 2023-10-08 17:29:25 -03:00
parent 5ed7717f0d
commit 540f9409f5

View File

@ -854,6 +854,7 @@ void SetWindowMaxSize(int width, int height)
void SetWindowSize(int width, int height) void SetWindowSize(int width, int height)
{ {
glfwSetWindowSize(platform.handle, width, height); glfwSetWindowSize(platform.handle, width, height);
WindowSizeCallback(platform.handle, width, height);
} }
// Set window opacity, value opacity is between 0.0 and 1.0 // Set window opacity, value opacity is between 0.0 and 1.0