JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
restoring tip to be a working dwm again (switching FONT to terminus in config.arg.h)
[dwm.git] / event.c
diff --git a/event.c b/event.c
index 9897640..ad4e271 100644 (file)
--- a/event.c
+++ b/event.c
@@ -301,8 +301,7 @@ maprequest(XEvent *e) {
 
        if(!XGetWindowAttributes(dpy, ev->window, &wa))
                return;
-       fprintf(stderr, "does the window suck? %s\n", wa.map_state == IsViewable ? "no" : "yes");
-       if(wa.override_redirect || wa.map_state != IsViewable)
+       if(wa.override_redirect)
                return;
        if(!getclient(ev->window))
                manage(ev->window, &wa);