hotfix of a serious crashing bug
This commit is contained in:
parent
760e23dd3a
commit
7009ebfa69
@ -1,5 +1,5 @@
|
||||
# dwm version
|
||||
VERSION = 2.5
|
||||
VERSION = 2.5.1
|
||||
|
||||
# Customize below to fit your system
|
||||
|
||||
|
3
tag.c
3
tag.c
@ -114,7 +114,8 @@ tag(Arg *arg) {
|
||||
return;
|
||||
for(i = 0; i < ntags; i++)
|
||||
sel->tags[i] = (arg->i == -1) ? True : False;
|
||||
sel->tags[arg->i] = True;
|
||||
if(arg->i >= 0 && arg->i < ntags)
|
||||
sel->tags[arg->i] = True;
|
||||
arrange();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user