please recheck this patch with Mathematica from Wolfram Research - lemme know if it fixes the geyish blob window bug 52250e7c
Anselm R. Garbe · 2007-06-19 09:08 1 file(s) · +2 −1
event.c +2 −1
301 301
302 302
	if(!XGetWindowAttributes(dpy, ev->window, &wa))
303 303
		return;
304 -
	if(wa.override_redirect)
304 +
	fprintf(stderr, "does the window suck? %s\n", wa.map_state == IsViewable ? "no" : "yes");
305 +
	if(wa.override_redirect || wa.map_state != IsViewable)
305 306
		return;
306 307
	if(!getclient(ev->window))
307 308
		manage(ev->window, &wa);