1
0

fix monitor select when no focus

This commit is contained in:
Connor Lane Smith 2011-09-30 21:08:37 +01:00
parent 6ac0f2ac34
commit 9d8b545ed4

View File

@ -509,7 +509,7 @@ setup(void) {
XWindowAttributes wa;
XGetInputFocus(dc->dpy, &w, &di);
if(w != root && XGetWindowAttributes(dc->dpy, w, &wa))
if(w != root && w != PointerRoot && w != None && XGetWindowAttributes(dc->dpy, w, &wa))
XTranslateCoordinates(dc->dpy, root, root, wa.x, wa.y, &x, &y, &dw);
else
XQueryPointer(dc->dpy, root, &dw, &dw, &x, &y, &di, &di, &du);