From 0cae08778420ceed954217c7c37ac222ff67966e Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Wed, 5 Jul 2006 05:43:20 +0000 Subject: [PATCH] cosmetic fix git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3750 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- src/browser.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/browser.c b/src/browser.c index d1d9a978..6cacef0b 100644 --- a/src/browser.c +++ b/src/browser.c @@ -616,7 +616,8 @@ void browser_refresh(void) /* The maximum length of the file information in * columns: 7 for "--", "(dir)", or the file size, and * 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? */ char *disp = display_string(filetail, dots ? filetaillen - longest + foomaxlen + 4 : 0, longest, FALSE); -- 2.39.5