JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
applied viewsel.patch
authorAnselm R.Garbe <arg@10ksloc.org>
Mon, 14 Aug 2006 16:46:07 +0000 (18:46 +0200)
committerAnselm R.Garbe <arg@10ksloc.org>
Mon, 14 Aug 2006 16:46:07 +0000 (18:46 +0200)
tag.c

diff --git a/tag.c b/tag.c
index a718ebd..4b6d513 100644 (file)
--- a/tag.c
+++ b/tag.c
@@ -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();
        }
@@ -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);