I don't see any reason why we should select for input on override-redirect windows? - dwm - dynamic window manager HTML git clone https://git.parazyd.org/dwm DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit 35e65ea64095d4a2ef305b20aac9d72624af514c DIR parent d0d986dd0e0924552223b40e4e14f01d285ab8d6 HTML Author: Anselm R. Garbe <arg@suckless.org> Date: Mon, 12 Feb 2007 16:41:46 +0100 I don't see any reason why we should select for input on override-redirect windows? Diffstat: M event.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) --- DIR diff --git a/event.c b/event.c @@ -293,11 +293,8 @@ maprequest(XEvent *e) { if(!XGetWindowAttributes(dpy, ev->window, &wa)) return; - if(wa.override_redirect) { - XSelectInput(dpy, ev->window, - (StructureNotifyMask | PropertyChangeMask)); + if(wa.override_redirect) return; - } if(!getclient(ev->window)) manage(ev->window, &wa); }