projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a6679b
)
fix client position in list also on tag and toggletag
author
Anselm R. Garbe
<arg@10kloc.org>
Tue, 29 Aug 2006 07:25:14 +0000
(09:25 +0200)
committer
Anselm R. Garbe
<arg@10kloc.org>
Tue, 29 Aug 2006 07:25:14 +0000
(09:25 +0200)
tag.c
patch
|
blob
|
history
diff --git
a/tag.c
b/tag.c
index a3dc6aba98f1a643f2af2828b739b6be8464cd2a..7bc4da0337793584f55d49db3dd03e7e437a680c 100644
(file)
--- 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