please recheck this patch with Mathematica from Wolfram Research - lemme know if it fixes the geyish blob window bug
Anselm R. Garbe arg@suckless.org
Tue, 19 Jun 2007 09:08:15 +0200
1 files changed,
2 insertions(+),
1 deletions(-)
jump to
M
event.c
→
event.c
@@ -301,7 +301,8 @@ XMapRequestEvent *ev = &e->xmaprequest;
if(!XGetWindowAttributes(dpy, ev->window, &wa)) return; - if(wa.override_redirect) + fprintf(stderr, "does the window suck? %s\n", wa.map_state == IsViewable ? "no" : "yes"); + if(wa.override_redirect || wa.map_state != IsViewable) return; if(!getclient(ev->window)) manage(ev->window, &wa);