mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
Fixed window positioning on OS X.
This commit is contained in:
parent
0b5de6dd28
commit
c4d856bcb2
@ -863,7 +863,7 @@ void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos)
|
||||
if (xpos)
|
||||
*xpos = contentRect.origin.x;
|
||||
if (ypos)
|
||||
*ypos = contentRect.origin.y;
|
||||
*ypos = transformY(contentRect.origin.y + contentRect.size.height);
|
||||
}
|
||||
|
||||
void _glfwPlatformSetWindowPos(_GLFWwindow* window, int x, int y)
|
||||
|
Loading…
Reference in New Issue
Block a user