Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
added heretag command which allows to tag a client of a foreign tag with current tag
[dwm.git]
/
client.c
diff --git
a/client.c
b/client.c
index
69189de
..
166e979
100644
(file)
--- a/
client.c
+++ b/
client.c
@@
-66,8
+66,8
@@
focusnext(Arg *arg)
if(!sel)
return;
if(!sel)
return;
- if(!(c = getnext(sel->next)))
- c = getnext(clients);
+ if(!(c = getnext(sel->next
, tsel
)))
+ c = getnext(clients
, tsel
);
if(c) {
higher(c);
c->revert = sel;
if(c) {
higher(c);
c->revert = sel;
@@
-410,8
+410,8
@@
zoom(Arg *arg)
if(!sel)
return;
if(!sel)
return;
- if(sel == getnext(clients) && sel->next) {
- if((c = getnext(sel->next)))
+ if(sel == getnext(clients
, tsel
) && sel->next) {
+ if((c = getnext(sel->next
, tsel
)))
sel = c;
}
sel = c;
}