t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit dfa5ea63600d8c68bbe05fbc80191bd3198510b2
   DIR parent 3e06edeb5df0aa95614cb0b11ba1931f01b6f337
   URI Author: Anselm R.Garbe <arg@10ksloc.org>
       Date:   Mon, 14 Aug 2006 18:46:07 +0200
       
       applied viewsel.patch
       
       Diffstat:
         M tag.c                               |       8 ++++++--
       
       1 file changed, 6 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/tag.c b/tag.c
       t@@ -47,7 +47,9 @@ dofloat(Arg *arg)
                        else
                                ban(c);
                }
       -        if((sel = getnext(clients))) {
       +        if(!sel || !isvisible(sel))
       +                sel = getnext(clients);
       +        if(sel) {
                        focus(sel);
                        restack();
                }
       t@@ -111,7 +113,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);