Fix resize handling in ncurses UI

This commit is contained in:
Maxime Coste 2014-07-26 22:38:10 +01:00
parent 8d6e8bc06f
commit 7c10660f9a

View File

@ -393,6 +393,8 @@ void NCursesUI::check_resize()
resizeterm(ws.ws_row, ws.ws_col);
update_dimensions();
}
ungetch(KEY_RESIZE);
m_dirty = true;
resize_pending = false;
}
}