aboutsummaryrefslogtreecommitdiffstats
path: root/tag.c
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-14 18:46:07 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-14 18:46:07 +0200
commitdfa5ea63600d8c68bbe05fbc80191bd3198510b2 (patch)
tree9c33add636c30afcd45b6e1f5b4a6fc711ba51cd /tag.c
parent3e06edeb5df0aa95614cb0b11ba1931f01b6f337 (diff)
downloaddwm-dfa5ea63600d8c68bbe05fbc80191bd3198510b2.tar.zst
applied viewsel.patch
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tag.c b/tag.c
index a718ebd..4b6d513 100644
--- 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);