From 205423874c2dcc43c1def1ab80e40c8bac0e3f30 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Fri, 7 Jul 2023 22:23:45 +0200 Subject: [PATCH] gui: Clear status bar after pressing . Without this a stale message such as "scrolled view: 1-36/42" remains although the window has been updated to show the bottom of the ringbuffer. --- gui.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gui.c b/gui.c index 0f3a3550..66fb7870 100644 --- a/gui.c +++ b/gui.c @@ -1166,6 +1166,7 @@ static void com_cancel_scroll(void) } scroll_position = 0; redraw_bot_win(); + print_in_bar(COLOR_MSG, " "); } static void com_page_down(void) -- 2.39.2