Преглед на файлове

please recheck this patch with Mathematica from Wolfram Research - lemme know if it fixes the geyish blob window bug

Anselm R. Garbe преди 18 години
родител
ревизия
52250e7c1e
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  1. 2 1
      event.c

+ 2 - 1
event.c

@@ -301,7 +301,8 @@ maprequest(XEvent *e) {
 
 	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);