cosmetic fix
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3750 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
567d471681
commit
0cae087784
|
@ -616,7 +616,8 @@ void browser_refresh(void)
|
||||||
/* The maximum length of the file information in
|
/* The maximum length of the file information in
|
||||||
* columns: 7 for "--", "(dir)", or the file size, and
|
* columns: 7 for "--", "(dir)", or the file size, and
|
||||||
* 12 for "(parent dir)". */
|
* 12 for "(parent dir)". */
|
||||||
bool dots = (filetaillen > longest - foomaxlen - 1);
|
bool dots = (COLS < 15 ? FALSE : filetaillen > longest -
|
||||||
|
foomaxlen - 1);
|
||||||
/* Do we put an ellipsis before the filename? */
|
/* Do we put an ellipsis before the filename? */
|
||||||
char *disp = display_string(filetail, dots ? filetaillen -
|
char *disp = display_string(filetail, dots ? filetaillen -
|
||||||
longest + foomaxlen + 4 : 0, longest, FALSE);
|
longest + foomaxlen + 4 : 0, longest, FALSE);
|
||||||
|
|
Loading…
Reference in New Issue