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

2
tag.c
View File

@ -113,7 +113,7 @@ tag(Arg *arg) {
if(!sel)
return;
for(i = 0; i < ntags; i++)
sel->tags[i] = False;
sel->tags[i] = (arg->i == -1) ? True : False;
sel->tags[arg->i] = True;
arrange();
}