diff options
author | Anselm R. Garbe <garbeam@wmii.de> | 2006-07-11 11:10:05 +0200 |
---|---|---|
committer | Anselm R. Garbe <garbeam@wmii.de> | 2006-07-11 11:10:05 +0200 |
commit | 3a69c5173cdd24959410870bec2a10a76272e034 (patch) | |
tree | 993f2fb75b1c44213d0c95a4da8b3a18daa739fe /event.c | |
parent | 439e15d09f6fa9271d3b49ef97194f0c80ebe161 (diff) | |
download | dwm-3a69c5173cdd24959410870bec2a10a76272e034.tar.gz |
implemented pipe_spawn
Diffstat (limited to 'event.c')
-rw-r--r-- | event.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/event.c b/event.c index d6977d3..b31c94f 100644 --- a/event.c +++ b/event.c @@ -218,7 +218,6 @@ keymapnotify(XEvent *e) static void maprequest(XEvent *e) { -#if 0 XMapRequestEvent *ev = &e->xmaprequest; static XWindowAttributes wa; @@ -231,9 +230,8 @@ maprequest(XEvent *e) return; } - if(!client_of_win(ev->window)) - manage_client(create_client(ev->window, &wa)); -#endif + /*if(!client_of_win(ev->window))*/ + manage(create_client(ev->window, &wa)); } static void |