diff options
| author | Anselm R. Garbe <arg@10kloc.org> | 2006-09-08 02:19:54 -0400 |
|---|---|---|
| committer | Anselm R. Garbe <arg@10kloc.org> | 2006-09-08 02:19:54 -0400 |
| commit | 0925dd588c6879916c8a9ded1e680963b093b068 (patch) | |
| tree | 5815385a168c5b74fefbff9899d2a26564bd5e97 /client.c | |
| parent | really small changes to dwm.1 (diff) | |
| download | dwm-0925dd588c6879916c8a9ded1e680963b093b068.tar.gz dwm-0925dd588c6879916c8a9ded1e680963b093b068.tar.bz2 dwm-0925dd588c6879916c8a9ded1e680963b093b068.zip | |
applied sanders patch of not manipulating sel
Diffstat (limited to '')
| -rw-r--r-- | client.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -414,14 +414,16 @@ togglemax(Arg *arg) void unmanage(Client *c) { + Client *nc; + XGrabServer(dpy); XSetErrorHandler(xerrordummy); detach(c); detachstack(c); if(sel == c) { - for(sel = stack; sel && !isvisible(sel); sel = sel->snext); - focus(sel); + for(nc = stack; nc && !isvisible(nc); nc = nc->snext); + focus(nc); } XUngrabButton(dpy, AnyButton, AnyModifier, c->win); |
