From: Andre Noll Date: Fri, 7 Jul 2023 20:23:45 +0000 (+0200) Subject: gui: Clear status bar after pressing . X-Git-Tag: v0.7.3~8 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=205423874c2dcc43c1def1ab80e40c8bac0e3f30 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. --- 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)