1
1

Properly fixed crash on browsing dirs with a small window size

I was overseeing a stupid mistake in
  a7b7841ac084b21afd85c85c896fe89c441d4062
Obviously, you need to check against wincols and not winrows...
Этот коммит содержится в:
Yorhel 2010-04-27 13:27:57 +02:00
родитель cc15863fcc
Коммит c84e70b627

Просмотреть файл

@ -141,7 +141,7 @@ void browse_draw_item(struct dir *n, int row) {
}
/* format and add item to the list */
line = malloc(winrows > 35 ? winrows+1 : 36);
line = malloc(wincols > 35 ? wincols+1 : 36);
switch(graph) {
case 0:
sprintf(line, "%%c %%8s %%c%%-%ds", wincols-13);