aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-09-04 17:39:33 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-09-04 17:39:33 +0200
commitf15f45a9f80d5dcd1098b8e9aef4fee7bd53aba4 (patch)
tree6cb691e8668a4aa36a146c1153ccf20ae1ef750f /client.c
parent1b2e149cb407be34be0f2b28b8801dc3224eb5c2 (diff)
downloaddwm-f15f45a9f80d5dcd1098b8e9aef4fee7bd53aba4.tar.zst
simplified manage
Diffstat (limited to 'client.c')
-rw-r--r--client.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/client.c b/client.c
index 0b5fb2b..4f2a69c 100644
--- a/client.c
+++ b/client.c
@@ -254,15 +254,12 @@ manage(Window w, XWindowAttributes *wa)
clients = c;
settitle(c);
- if(isvisible(c)) {
- focus(NULL);
- sel = c;
- }
- arrange(NULL);
+ ban(c);
XMapWindow(dpy, c->win);
XMapWindow(dpy, c->twin);
if(isvisible(c))
focus(c);
+ arrange(NULL);
}
void