Commit 5056bb9

Anselm R. Garbe <arg@10kloc.org>
2006-08-29 03:25:14
fix client position in list also on tag and toggletag
1 parent 8a6679b
Changed files (1)
tag.c
@@ -120,6 +120,8 @@ tag(Arg *arg)
 		sel->tags[i] = False;
 	sel->tags[arg->i] = True;
 	settitle(sel);
+	detach(sel);
+	attach(sel);
 	if(!isvisible(sel))
 		arrange(NULL);
 	else
@@ -139,6 +141,8 @@ toggletag(Arg *arg)
 	if(i == ntags)
 		sel->tags[arg->i] = True;
 	settitle(sel);
+	detach(sel);
+	attach(sel);
 	if(!isvisible(sel))
 		arrange(NULL);
 	else