Xinqi Bao's Git
projects
/
dwm.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
| inline |
side by side
(parent:
fe3dfbb
)
applied the saner patch (removed the pathetic one)
author
Anselm R.Garbe <
[email protected]
>
Mon, 14 Aug 2006 13:33:23 +0000
(15:33 +0200)
committer
Anselm R.Garbe <
[email protected]
>
Mon, 14 Aug 2006 13:33:23 +0000
(15:33 +0200)
tag.c
diff
|
blob
|
history
diff --git
a/tag.c
b/tag.c
index
b5bebea
..
edf68c6
100644
(file)
--- a/
tag.c
+++ b/
tag.c
@@
-37,15
+37,11
@@
void (*arrange)(Arg *) = DEFMODE;
void
appendtag(Arg *arg)
{
- Client *c = sel;
-
- if(!c)
+ if(!sel)
return;
- c->tags[arg->i] = True;
- arrange(NULL);
- focus(c);
- restack();
+ sel->tags[arg->i] = True;
+ settitle(sel);
}
void