diff options
author | Connor Lane Smith | 2011-09-30 21:08:37 +0100 |
---|---|---|
committer | Connor Lane Smith | 2011-09-30 21:08:37 +0100 |
commit | e30ad490b2b9048bc7e70fc81f0be2b378985f89 (patch) | |
tree | efae553d91d2d4352a67aadf6b36aa726b2c4a2e | |
parent | 50207344084b385839cef251f77f5129dc85874e (diff) |
fix monitor select when no focus
-rw-r--r-- | dmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |