From 540f9409f5a1c7aef6f5c0379ce312a229096232 Mon Sep 17 00:00:00 2001 From: M374LX Date: Sun, 8 Oct 2023 17:29:25 -0300 Subject: [PATCH] Fix window size update --- src/rcore_desktop.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rcore_desktop.c b/src/rcore_desktop.c index 33a4aab0e..07c54d697 100644 --- a/src/rcore_desktop.c +++ b/src/rcore_desktop.c @@ -854,6 +854,7 @@ void SetWindowMaxSize(int width, int height) void SetWindowSize(int width, int height) { glfwSetWindowSize(platform.handle, width, height); + WindowSizeCallback(platform.handle, width, height); } // Set window opacity, value opacity is between 0.0 and 1.0