From 6a660f7e8fdbf9a6c7c7f77be4b909b383bd15e9 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Tue, 7 Aug 2012 14:21:26 +0200 Subject: [PATCH] ncurses: refresh at the end of print_status so that the status is immediately visible --- src/ncurses.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ncurses.cc b/src/ncurses.cc index 53035345..f85eb408 100644 --- a/src/ncurses.cc +++ b/src/ncurses.cc @@ -312,6 +312,7 @@ void NCursesClient::print_status(const String& status) move(y-1, 0); clrtoeol(); addstr(status.c_str()); + refresh(); } }