committed a patch which fixes the hints of Jukka
This commit is contained in:
parent
deba5069e5
commit
937cabfa0a
4 changed files with 14 additions and 40 deletions
8
tag.c
8
tag.c
|
@ -63,7 +63,7 @@ dofloat(Arg *arg)
|
|||
ban(c);
|
||||
}
|
||||
if(sel && !sel->tags[tsel]) {
|
||||
if((sel = getnext(clients, tsel))) {
|
||||
if((sel = getnext(clients))) {
|
||||
higher(sel);
|
||||
focus(sel);
|
||||
}
|
||||
|
@ -126,7 +126,7 @@ dotile(Arg *arg)
|
|||
ban(c);
|
||||
}
|
||||
if(!sel || (sel && !sel->tags[tsel])) {
|
||||
if((sel = getnext(clients, tsel))) {
|
||||
if((sel = getnext(clients))) {
|
||||
higher(sel);
|
||||
focus(sel);
|
||||
}
|
||||
|
@ -135,9 +135,9 @@ dotile(Arg *arg)
|
|||
}
|
||||
|
||||
Client *
|
||||
getnext(Client *c, unsigned int t)
|
||||
getnext(Client *c)
|
||||
{
|
||||
for(; c && !c->tags[t]; c = c->next);
|
||||
for(; c && !c->tags[tsel]; c = c->next);
|
||||
return c;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue