diff options
author | Connor Lane Smith <cls@lubutu.com> | 2011-10-04 21:39:56 +0100 |
---|---|---|
committer | Connor Lane Smith <cls@lubutu.com> | 2011-10-04 21:39:56 +0100 |
commit | 8e302717cb2d03c79c2f372f5e0489ea54dbb440 (patch) | |
tree | 3952c9a3b2af9928be40cd658dc5e690cc060fb9 /dmenu.c | |
parent | e30ad490b2b9048bc7e70fc81f0be2b378985f89 (diff) |
input focus: fix for reparenting wms
Diffstat (limited to 'dmenu.c')
-rw-r--r-- | dmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -510,7 +510,7 @@ setup(void) { XGetInputFocus(dc->dpy, &w, &di); if(w != root && w != PointerRoot && w != None && XGetWindowAttributes(dc->dpy, w, &wa)) - XTranslateCoordinates(dc->dpy, root, root, wa.x, wa.y, &x, &y, &dw); + XTranslateCoordinates(dc->dpy, w, root, wa.x, wa.y, &x, &y, &dw); else XQueryPointer(dc->dpy, root, &dw, &dw, &x, &y, &di, &di, &du); for(i = 0; i < n-1; i++) |