nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 58ed3a81524ba627ab11dc46e4dfc9b608106d9d
parent e11021a7a509d0fddff5aa32cfe077d6b0c42404
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sun, 28 Jan 2018 21:08:28 +0100

display: wipe the status bar when doing a total refresh

This fixes https://savannah.gnu.org/bugs/?52997.

Diffstat:
Msrc/winio.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/winio.c b/src/winio.c @@ -3301,6 +3301,7 @@ void total_refresh(void) #endif if (currmenu != MBROWSER && currmenu != MWHEREISFILE && currmenu != MGOTODIR) edit_refresh(); + wipe_statusbar(); bottombars(currmenu); }