Ver Fonte

sanders toggletag patch is much more elegant

Anselm R. Garbe há 19 anos atrás
pai
commit
eac04882b4
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      tag.c

+ 1 - 1
tag.c

@@ -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);
 }