applied the saner patch (removed the pathetic one)
This commit is contained in:
parent
fe3dfbbe90
commit
aff4c787f4
1 changed files with 3 additions and 7 deletions
10
tag.c
10
tag.c
|
@ -37,15 +37,11 @@ void (*arrange)(Arg *) = DEFMODE;
|
||||||
void
|
void
|
||||||
appendtag(Arg *arg)
|
appendtag(Arg *arg)
|
||||||
{
|
{
|
||||||
Client *c = sel;
|
if(!sel)
|
||||||
|
|
||||||
if(!c)
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
c->tags[arg->i] = True;
|
sel->tags[arg->i] = True;
|
||||||
arrange(NULL);
|
settitle(sel);
|
||||||
focus(c);
|
|
||||||
restack();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue