sanders toggletag patch is much more elegant

This commit is contained in:
Anselm R. Garbe 2006-09-05 09:37:45 +02:00
parent 6499fc4f93
commit eac04882b4
1 changed files with 1 additions and 1 deletions

2
tag.c
View File

@ -136,6 +136,6 @@ toggletag(Arg *arg)
for(i = 0; i < ntags && !sel->tags[i]; i++);
if(i == ntags)
sel->tags[arg->i] = True;
for(sel->weight = 0; sel->weight < ntags && !sel->tags[sel->weight]; sel->weight++);
sel->weight = (i == ntags) ? arg->i : i;
arrange(NULL);
}