applied sanders tag()/toggletag() fixes

This commit is contained in:
Anselm R.Garbe 2006-08-14 17:50:48 +02:00
parent 4ad20ffc2c
commit 78b050c13c
1 changed files with 4 additions and 1 deletions

5
tag.c
View File

@ -269,7 +269,8 @@ tag(Arg *arg)
sel->tags[i] = False;
sel->tags[arg->i] = True;
settitle(sel);
arrange(NULL);
if(!isvisible(sel))
arrange(NULL);
}
void
@ -292,6 +293,8 @@ toggletag(Arg *arg)
if(i == ntags)
sel->tags[arg->i] = True;
settitle(sel);
if(!isvisible(sel))
arrange(NULL);
}