tplease recheck this patch with Mathematica from Wolfram Research - lemme know if it fixes the geyish blob window bug - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 52250e7c1e54d0ec8cd7d4667ba34137fcfef908
(DIR) parent 51a94a2f147e490101f33b276c83389e48307425
(HTM) Author: Anselm R. Garbe <arg@suckless.org>
Date: Tue, 19 Jun 2007 09:08:15 +0200
please recheck this patch with Mathematica from Wolfram Research - lemme know if it fixes the geyish blob window bug
Diffstat:
M event.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/event.c b/event.c
t@@ -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);