Refresh whole panel on Ctrl+L in infoscreen.

Closes #520.
This commit is contained in:
Hisham 2016-06-23 13:25:58 -03:00
parent 7d5ef246f1
commit 7f9c82f28d
1 changed files with 1 additions and 0 deletions

View File

@ -83,6 +83,7 @@ void InfoScreen_drawTitled(InfoScreen* this, char* fmt, ...) {
wmove(stdscr, 0, 0);
vw_printw(stdscr, fmt, ap);
attrset(CRT_colors[DEFAULT_COLOR]);
this->display->needsRedraw = true;
Panel_draw(this->display, true);
IncSet_drawBar(this->inc);
va_end(ap);