tweaks: avoid converting a file name for more than will fit on screen

This commit is contained in:
Benno Schulenberg 2021-04-07 12:12:06 +02:00
parent 90c6b572d0
commit 20eb422829
1 changed files with 1 additions and 1 deletions

View File

@ -2097,7 +2097,7 @@ void minibar(void)
/* Display the name of the current file, plus a star when modified. */
if (openfile->filename[0] != '\0') {
as_an_at = FALSE;
thename = display_string(openfile->filename, 0, HIGHEST_POSITIVE, FALSE, FALSE);
thename = display_string(openfile->filename, 0, COLS, FALSE, FALSE);
} else
thename = copy_of(_("(nameless)"));