removed viewall(), replaced with view(-1); added tag(-1) to tag a client with all tags (new key combo MODKEY-Shift-0)

This commit is contained in:
arg@mig29
2006-11-30 15:27:43 +01:00
parent e06447ee88
commit 42fd392e05
5 changed files with 9 additions and 13 deletions

11
view.c
View File

@ -233,20 +233,11 @@ view(Arg *arg) {
unsigned int i;
for(i = 0; i < ntags; i++)
seltag[i] = False;
seltag[i] = (arg->i == -1) ? True : False;
seltag[arg->i] = True;
arrange();
}
void
viewall(Arg *arg) {
unsigned int i;
for(i = 0; i < ntags; i++)
seltag[i] = True;
arrange();
}
void
zoom(Arg *arg) {
unsigned int n;