git clone dmenu dmenu Log gph
Found at: gopher.r-36.net:70/scm/dmenu/commit/8e302717cb2d03c79c2f372f5e0489ea54dbb440.gph
tinput focus: fix for reparenting wms - dmenu - Dmenu fork with xft fonts.
git clone git://r-36.net/dmenu
---
commit 8e302717cb2d03c79c2f372f5e0489ea54dbb440
parent e30ad490b2b9048bc7e70fc81f0be2b378985f89
Date: Tue, 4 Oct 2011 21:39:56 +0100
input focus: fix for reparenting wms
Diffstat:
dmenu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/dmenu.c b/dmenu.c
t@@ -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++)
.