From b58e9fc384c5ffb0506579fa33e86d756d1beac8 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Thu, 6 May 2021 22:33:55 +0530 Subject: [PATCH] Fix min columns --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }