I don't see any reason why we should select for input on override-redirect windows?

This commit is contained in:
Anselm R. Garbe 2007-02-12 16:41:46 +01:00
parent d0d986dd0e
commit 35e65ea640
1 changed files with 1 additions and 4 deletions

View File

@ -293,11 +293,8 @@ maprequest(XEvent *e) {
if(!XGetWindowAttributes(dpy, ev->window, &wa)) if(!XGetWindowAttributes(dpy, ev->window, &wa))
return; return;
if(wa.override_redirect) { if(wa.override_redirect)
XSelectInput(dpy, ev->window,
(StructureNotifyMask | PropertyChangeMask));
return; return;
}
if(!getclient(ev->window)) if(!getclient(ev->window))
manage(ev->window, &wa); manage(ev->window, &wa);
} }