Fixed window position being incorrect on some WMs.

This commit is contained in:
arturo
2013-07-30 15:52:23 +02:00
committed by Camilla Berglund
parent 670070e61a
commit a6a5fa937c
2 changed files with 14 additions and 0 deletions
+11
View File
@@ -985,6 +985,17 @@ void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos)
XTranslateCoordinates(_glfw.x11.display, window->x11.handle, _glfw.x11.root,
0, 0, &x, &y, &child);
if (child != None)
{
int left, top;
XTranslateCoordinates(_glfw.x11.display, window->x11.handle, child,
0, 0, &left, &top, &child);
x -= left;
y -= top;
}
if (xpos)
*xpos = x;
if (ypos)