applied patch similiar proposed by dave tweed

This commit is contained in:
Anselm R. Garbe 2006-08-29 17:11:37 +02:00
parent c3c94c0e0a
commit 157ea539a2
1 changed files with 13 additions and 10 deletions

23
tag.c
View File

@ -30,6 +30,17 @@ RULES
static RReg *rreg = NULL;
static unsigned int len = 0;
static void
applytag()
{
/* asserts sel != NULL */
settitle(sel);
if(!isvisible(sel))
arrange(NULL);
else
drawstatus();
}
/* extern */
Client *
@ -121,11 +132,7 @@ tag(Arg *arg)
for(i = 0; i < ntags; i++)
sel->tags[i] = False;
sel->tags[arg->i] = True;
settitle(sel);
if(!isvisible(sel))
arrange(NULL);
else
drawstatus();
applytag();
}
void
@ -140,9 +147,5 @@ toggletag(Arg *arg)
for(i = 0; i < ntags && !sel->tags[i]; i++);
if(i == ntags)
sel->tags[arg->i] = True;
settitle(sel);
if(!isvisible(sel))
arrange(NULL);
else
drawstatus();
applytag();
}