applied viewsel.patch
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 18:46:07 +0200
1 files changed,
6 insertions(+),
2 deletions(-)
jump to
M
tag.c
→
tag.c
@@ -47,7 +47,9 @@ }
else ban(c); } - if((sel = getnext(clients))) { + if(!sel || !isvisible(sel)) + sel = getnext(clients); + if(sel) { focus(sel); restack(); }@@ -111,7 +113,9 @@ }
else ban(c); } - if((sel = getnext(clients))) + if(!sel || !isvisible(sel)) + sel = getnext(clients); + if(sel) focus(sel); else XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);