diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-05-14 11:54:30 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-05-14 11:54:30 +0200 |
commit | ab3d6a7dfe76d9857f2fc621034359a2a0bf09df (patch) | |
tree | 9738e466d2ea2b0e1107084b159f8a1b93f271af /client.c | |
parent | c67dbb28e47b03eca0c7faddcf7c9862c41694b7 (diff) |
applied dfenze cleanups, fixed some comments in dwm.h
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -153,6 +153,14 @@ focus(Client *c) { } void +focustopvisible(void) { + Client *c; + + for(c = stack; c && !isvisible(c); c = c->snext); + focus(c); +} + +void killclient(const char *arg) { XEvent ev; @@ -391,10 +399,8 @@ unmanage(Client *c) { XConfigureWindow(dpy, c->win, CWBorderWidth, &wc); /* restore border */ detach(c); detachstack(c); - if(sel == c) { - for(nc = stack; nc && !isvisible(nc); nc = nc->snext); - focus(nc); - } + if(sel == c) + focustopvisible(); XUngrabButton(dpy, AnyButton, AnyModifier, c->win); setclientstate(c, WithdrawnState); free(c->tags); |