Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
this algorithm seems to keep order for any scenario
[dwm.git]
/
tag.c
diff --git
a/tag.c
b/tag.c
index
512f355
..
7bc4da0
100644
(file)
--- a/
tag.c
+++ b/
tag.c
@@
-120,8
+120,12
@@
tag(Arg *arg)
sel->tags[i] = False;
sel->tags[arg->i] = True;
settitle(sel);
sel->tags[i] = False;
sel->tags[arg->i] = True;
settitle(sel);
+ detach(sel);
+ attach(sel);
if(!isvisible(sel))
arrange(NULL);
if(!isvisible(sel))
arrange(NULL);
+ else
+ drawstatus();
}
void
}
void
@@
-137,6
+141,10
@@
toggletag(Arg *arg)
if(i == ntags)
sel->tags[arg->i] = True;
settitle(sel);
if(i == ntags)
sel->tags[arg->i] = True;
settitle(sel);
+ detach(sel);
+ attach(sel);
if(!isvisible(sel))
arrange(NULL);
if(!isvisible(sel))
arrange(NULL);
+ else
+ drawstatus();
}
}