ncurses: refresh at the end of print_status so that the status is immediately visible

This commit is contained in:
Maxime Coste 2012-08-07 14:21:26 +02:00
parent 2cac18545e
commit 6a660f7e8f

View File

@ -312,6 +312,7 @@ void NCursesClient::print_status(const String& status)
move(y-1, 0); move(y-1, 0);
clrtoeol(); clrtoeol();
addstr(status.c_str()); addstr(status.c_str());
refresh();
} }
} }