From: Arun Prakash Jana Date: Thu, 6 May 2021 17:03:55 +0000 (+0530) Subject: Fix min columns X-Git-Tag: v4.1~105 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=b58e9fc384c5ffb0506579fa33e86d756d1beac8;p=nnn.git Fix min columns --- diff --git a/src/nnn.c b/src/nnn.c index 3da955d5..6403ea8a 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -5758,7 +5758,7 @@ static void redraw(char *path) move_cursor(cur, 1); /* Fail redraw if < than 10 columns, context info prints 10 chars */ - if (ncols < MIN_DISPLAY_COLS) { + if (ncols <= MIN_DISPLAY_COLS) { printmsg(messages[MSG_FEW_COLUMNS]); return; }