Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
| inline |
side by side
returning to old bar colorization behavior, like sander proposed for consistency...
[dwm.git]
/
tag.c
diff --git
a/tag.c
b/tag.c
index
70a1553
..
798fd0a
100644
(file)
--- a/
tag.c
+++ b/
tag.c
@@
-117,7
+117,7
@@
tag(Arg *arg) {
sel->tags[i] = False;
sel->tags[arg->i] = True;
sel->weight = arg->i;
- arrange(
NULL
);
+ arrange();
}
void
@@
-131,5
+131,5
@@
toggletag(Arg *arg) {
if(i == ntags)
sel->tags[arg->i] = True;
sel->weight = (i == ntags) ? arg->i : i;
- arrange(
NULL
);
+ arrange();
}