Do not display info box when there is not enough room on screen for it

Fixes #159
This commit is contained in:
Maxime Coste 2015-04-30 13:45:05 +01:00
parent 6974cfbf64
commit 202d4766c2

View File

@ -832,6 +832,10 @@ void NCursesUI::info_show(StringView title, StringView content,
else
pos = compute_pos(anchor, size, m_menu_win, style == InfoStyle::InlineAbove);
// The info window will hide the status line
if (pos.line + size.line > m_dimensions.line)
return;
m_info_win = (NCursesWin*)newwin((int)size.line, (int)size.column,
(int)pos.line, (int)pos.column);