From 4a403ae00f2c84090b07b11b5df363efecf4aa45 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Fri, 25 Sep 2020 16:47:36 +0200 Subject: [PATCH] display: do not unnecessarily wipe the status bar It would wipe the edit window if there is just one row. This fixes https://savannah.gnu.org/bugs/?59178. Bug existed since version 2.9.3. --- src/winio.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/winio.c b/src/winio.c index 3ef668b8..925a7dd6 100644 --- a/src/winio.c +++ b/src/winio.c @@ -3314,7 +3314,6 @@ void draw_all_subwindows(void) #endif if (currmenu != MBROWSER && currmenu != MWHEREISFILE && currmenu != MGOTODIR) edit_refresh(); - wipe_statusbar(); bottombars(currmenu); }