浏览代码

fix client position in list also on tag and toggletag

Anselm R. Garbe 19 年之前
父节点
当前提交
5056bb952d
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      tag.c

+ 4 - 0
tag.c

@@ -120,6 +120,8 @@ tag(Arg *arg)
 		sel->tags[i] = False;
 		sel->tags[i] = False;
 	sel->tags[arg->i] = True;
 	sel->tags[arg->i] = True;
 	settitle(sel);
 	settitle(sel);
+	detach(sel);
+	attach(sel);
 	if(!isvisible(sel))
 	if(!isvisible(sel))
 		arrange(NULL);
 		arrange(NULL);
 	else
 	else
@@ -139,6 +141,8 @@ toggletag(Arg *arg)
 	if(i == ntags)
 	if(i == ntags)
 		sel->tags[arg->i] = True;
 		sel->tags[arg->i] = True;
 	settitle(sel);
 	settitle(sel);
+	detach(sel);
+	attach(sel);
 	if(!isvisible(sel))
 	if(!isvisible(sel))
 		arrange(NULL);
 		arrange(NULL);
 	else
 	else