mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-17 13:01:41 +00:00
Fixed: #979 Implement getWindowPos for Linux
This commit is contained in:
parent
2fb7d87cd2
commit
62169db22b
1 changed files with 1 additions and 6 deletions
|
@ -1515,12 +1515,7 @@ void CDriverGL::getWindowPos(uint32 &x, uint32 &y)
|
||||||
unsigned int depth = 0;
|
unsigned int depth = 0;
|
||||||
|
|
||||||
// Get geometry information about root window
|
// Get geometry information about root window
|
||||||
if (XGetGeometry(_dpy, RootWindow(_dpy, screen), &_win, &xtmp, &ytmp, &width, &height, &border_width, &depth))
|
if (!XGetGeometry(_dpy, RootWindow(_dpy, screen), &_win, &xtmp, &ytmp, &width, &height, &border_width, &depth))
|
||||||
{
|
|
||||||
display_width = width;
|
|
||||||
display_height = height;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
nlwarning("can't get root window geometry");
|
nlwarning("can't get root window geometry");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue