mirror of
https://github.com/glfw/glfw.git
synced 2026-06-22 06:16:27 +00:00
Fix glfwMaximizeWindow not checking window mode
This commit is contained in:
@@ -99,6 +99,8 @@ information on what to include when reporting a bug.
|
||||
|
||||
## Changelog
|
||||
|
||||
- Bugfix: Calling `glfwMaximizeWindow` on a full screen window was not ignored
|
||||
|
||||
|
||||
## Contact
|
||||
|
||||
|
||||
@@ -631,6 +631,10 @@ GLFWAPI void glfwMaximizeWindow(GLFWwindow* handle)
|
||||
assert(window != NULL);
|
||||
|
||||
_GLFW_REQUIRE_INIT();
|
||||
|
||||
if (window->monitor)
|
||||
return;
|
||||
|
||||
_glfwPlatformMaximizeWindow(window);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user