added viewall to mainstream (only Ross Mohns version, not the toggle)

This commit is contained in:
Anselm R. Garbe
2006-08-31 18:02:38 +02:00
parent 05fbbbd8dc
commit daae3bba50
5 changed files with 17 additions and 0 deletions

10
view.c
View File

@ -273,6 +273,16 @@ view(Arg *arg)
arrange(NULL);
}
void
viewall(Arg *arg)
{
unsigned int i;
for(i = 0; i < ntags; i++)
seltag[i] = True;
arrange(NULL);
}
void
zoom(Arg *arg)
{