macOS: Prevent resizing of fullscreen OS windows as it leads to visual artifacts
This commit is contained in:
parent
4604558d35
commit
0a4dfa8fd2
1 changed files with 2 additions and 0 deletions
|
|
@ -1845,6 +1845,8 @@ void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
|
|||
}
|
||||
else
|
||||
{
|
||||
// Disable window resizing in fullscreen.
|
||||
if ([window->ns.object styleMask] & NSWindowStyleMaskFullScreen || window->ns.in_traditional_fullscreen) return;
|
||||
NSRect contentRect =
|
||||
[window->ns.object contentRectForFrameRect:[window->ns.object frame]];
|
||||
contentRect.origin.y += contentRect.size.height - height;
|
||||
|
|
|
|||
Loading…
Reference in a new issue