From 135172a1c6935137e97c3298ed8550b3e766c833 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Wed, 15 Apr 2020 22:36:33 +0530 Subject: [PATCH] Fix #520 --- src/nnn.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index 1eb7fe30..56c5e3f2 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -4928,17 +4928,14 @@ static void redraw(char *path) return draw_line(path, ncols); } - /* Clear first line */ - move(0, 0); - clrtoeol(); + /* Clear screen */ + erase(); /* Enforce scroll/cursor invariants */ move_cursor(cur, 1); /* Fail redraw if < than 10 columns, context info prints 10 chars */ if (ncols < MIN_DISPLAY_COLS) { - /* Clear from last entry to end */ - clrtobot(); printmsg(messages[MSG_FEW_COLUMNS]); return; } @@ -5008,9 +5005,6 @@ static void redraw(char *path) cfg.dircolor = 0; } - /* Clear from last entry to end */ - clrtobot(); - statusbar(path); }