commit 4f15890105defdcd8f7b875712c85e61febafa47
parent 0afe38d81ae1f8c6d10b4fcfe0fdba6292295fb6
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Wed, 17 Nov 2021 16:38:30 +0100
help: when done, always redraw the "bottom bars", also with --zero
This fixes https://savannah.gnu.org/bugs/?61500.
Bug existed since commit 3dfd798d from earlier today.
Diffstat:
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/src/help.c b/src/help.c
@@ -550,13 +550,12 @@ void show_help(void)
curs_set(0);
- if (ISSET(NO_HELP) || ISSET(ZERO)) {
- currmenu = oldmenu;
+ if (ISSET(NO_HELP) || ISSET(ZERO))
window_init();
- } else {
+ else
blank_statusbar();
- bottombars(oldmenu);
- }
+
+ bottombars(oldmenu);
#ifdef ENABLE_BROWSER
if (oldmenu & (MBROWSER|MWHEREISFILE|MGOTODIR))