diff --git a/src/winio.c b/src/winio.c index 7d2b65435dde99b55ab0fea7ee18b6c30d50d0b5..e281bbd9800fa21044f7c7fd7b7572a1d3ace42e 100644 --- a/src/winio.c +++ b/src/winio.c @@ -2051,9 +2051,9 @@ void titlebar(const char *path) if (!newfie) { size_t lenpt = strlenpt(path), start_col; - /* Don't set dots to TRUE if we have at least 1/3 the length of + /* Don't set dots to TRUE if we have at least 1/5 the length of * the screen in columns. */ - dots = (space >= COLS / 3 && lenpt >= space); + dots = (space >= COLS / 5 && lenpt >= space); if (dots) { start_col = lenpt - space + 3;