fix wrong calculation of height_limit

This commit is contained in:
Sascha Kruse 2012-06-25 19:57:22 +02:00
parent 47a21c2ddf
commit bd5749095c

View File

@ -1178,7 +1178,7 @@ int main(int argc, char *argv[])
color_strings[ColBG][CRIT] = critbgcolor;
setup();
height_limit = indicate_hidden ? geometry.h - 1 : geometry.w;
height_limit = indicate_hidden ? geometry.h - 1 : geometry.h;
run();
return 0;
}