fixed a comment

This commit is contained in:
Anselm R. Garbe 2007-09-20 21:45:27 +02:00
parent 1fafcb1820
commit fa1ce22bc4
1 changed files with 1 additions and 1 deletions

2
dwm.c
View File

@ -1673,7 +1673,7 @@ toggleview(const char *arg) {
seltags[i] = !seltags[i];
for(j = 0; j < ntags && !seltags[j]; j++);
if(j == ntags)
seltags[i] = True; /* cannot toggle last view */
seltags[i] = True; /* at least one tag must be viewed */
arrange();
}