applied the saner patch (removed the pathetic one)

This commit is contained in:
Anselm R.Garbe 2006-08-14 15:33:23 +02:00
parent fe3dfbbe90
commit aff4c787f4
1 changed files with 3 additions and 7 deletions

10
tag.c
View File

@ -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