aboutsummaryrefslogtreecommitdiffstats
path: root/tag.c
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2006-11-30 15:27:43 +0100
committerarg@mig29 <unknown>2006-11-30 15:27:43 +0100
commit42fd392e05d54db441ecbf534cfd67d20473aac0 (patch)
tree9ad572a816dc6605e2a52f9d5dd720ec645ed56c /tag.c
parente06447ee88154a4acdde518299a32b083e3fbcba (diff)
downloaddwm-42fd392e05d54db441ecbf534cfd67d20473aac0.tar.zst
removed viewall(), replaced with view(-1); added tag(-1) to tag a client with all tags (new key combo MODKEY-Shift-0)
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tag.c b/tag.c
index b1a2eb9..20a0a17 100644
--- a/tag.c
+++ b/tag.c
@@ -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();
}