all repos — dmenu @ e30ad490b2b9048bc7e70fc81f0be2b378985f89

my build of dmenu

fix monitor select when no focus
Connor Lane Smith cls@lubutu.com
Fri, 30 Sep 2011 21:08:37 +0100
commit

e30ad490b2b9048bc7e70fc81f0be2b378985f89

parent

50207344084b385839cef251f77f5129dc85874e

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M dmenu.cdmenu.c

@@ -509,7 +509,7 @@ Window w, dw;

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);