commit b98545f4551937af0dfd6fd818df65161ffc10fe
parent 5a741a0205729c6b46dbbcb4c7e260ccc7122360
Author: Benno Schulenberg <bensberg@justemail.net>
Date: Mon, 17 Apr 2017 10:26:37 +0200
display: push the titlebar to the screen as soon as it has been drawn
To avoid an ncurses hiccup (miscoloring) when running on musl.
This fixes https://savannah.gnu.org/bugs/?50787.
Reported-by: Avi Halachmi <avihpit@yahoo.com>
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/winio.c b/src/winio.c
@@ -2078,6 +2078,7 @@ void titlebar(const char *path)
wattroff(topwin, interface_color_pair[TITLE_BAR]);
wnoutrefresh(topwin);
+ doupdate();
}
/* Display a normal message on the statusbar, quietly. */