diff options
| author | Anselm R. Garbe <arg@10kloc.org> | 2006-08-31 02:48:04 -0400 |
|---|---|---|
| committer | Anselm R. Garbe <arg@10kloc.org> | 2006-08-31 02:48:04 -0400 |
| commit | 4c368bcd24172166aab32948fc63feaa6a1bec93 (patch) | |
| tree | dddc175fd0f072d6b7ea09a9b91cbcdf8f9f64d6 /view.c | |
| parent | small fix in config.arg.h (diff) | |
| download | dwm-4c368bcd24172166aab32948fc63feaa6a1bec93.tar.gz dwm-4c368bcd24172166aab32948fc63feaa6a1bec93.tar.bz2 dwm-4c368bcd24172166aab32948fc63feaa6a1bec93.zip | |
applied sanders patch to remove unnecessary commit()
Diffstat (limited to '')
| -rw-r--r-- | view.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -67,7 +67,9 @@ dofloat(Arg *arg) else ban(c); } - if((sel = getnext(clients))) + if(!sel || !isvisible(sel)) + sel = getnext(clients); + if(sel) focus(sel); else XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime); @@ -130,7 +132,9 @@ dotile(Arg *arg) else ban(c); } - if((sel = getnext(clients))) + if(!sel || !isvisible(sel)) + sel = getnext(clients); + if(sel) focus(sel); else XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime); |
