projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e06ede
)
applied viewsel.patch
author
Anselm R.Garbe
<arg@10ksloc.org>
Mon, 14 Aug 2006 16:46:07 +0000
(18:46 +0200)
committer
Anselm R.Garbe
<arg@10ksloc.org>
Mon, 14 Aug 2006 16:46:07 +0000
(18:46 +0200)
tag.c
patch
|
blob
|
history
diff --git
a/tag.c
b/tag.c
index a718ebd2cd55a76710b10dda71c3f00f8e7b81d4..4b6d513c06c6544c397dd5923cb69bd4deb4dcb3 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);