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:
parent
e06447ee88
commit
42fd392e05
5 changed files with 9 additions and 13 deletions
11
view.c
11
view.c
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue