pplied Sanders appendtag patch
This commit is contained in:
parent
2ffdc1936c
commit
fe3dfbbe90
2 changed files with 12 additions and 2 deletions
8
tag.c
8
tag.c
|
@ -37,11 +37,15 @@ void (*arrange)(Arg *) = DEFMODE;
|
|||
void
|
||||
appendtag(Arg *arg)
|
||||
{
|
||||
if(!sel)
|
||||
Client *c = sel;
|
||||
|
||||
if(!c)
|
||||
return;
|
||||
|
||||
sel->tags[arg->i] = True;
|
||||
c->tags[arg->i] = True;
|
||||
arrange(NULL);
|
||||
focus(c);
|
||||
restack();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue