aboutsummaryrefslogtreecommitdiffstats
path: root/tag.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-08-29 09:25:14 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-08-29 09:25:14 +0200
commit5056bb952ddd9d667d2897ab09324ef7ce1596ea (patch)
tree1ec104a9cf800e6f5dc0d9458c175f9b80187b5e /tag.c
parent8a6679b3b4999559059df3ae9e08951099511036 (diff)
downloaddwm-5056bb952ddd9d667d2897ab09324ef7ce1596ea.tar.zst
fix client position in list also on tag and toggletag
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tag.c b/tag.c
index a3dc6ab..7bc4da0 100644
--- a/tag.c
+++ b/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