gui/widget/menue.cpp: try to disable 'always save/restore menu hint screens' (again)

This commit is contained in:
[CST] Focus
2013-11-29 11:46:22 +04:00
parent 7f318a9d0f
commit 8aa819642d

View File

@@ -1068,10 +1068,10 @@ void CMenuWidget::paintHint(int pos)
if (hint_painted) { if (hint_painted) {
/* clear detailsline line */ /* clear detailsline line */
if (details_line) if (details_line)
details_line->hide(); savescreen ? details_line->hide() : details_line->kill();
/* clear info box */ /* clear info box */
if ((info_box) && (pos == -1)) if ((info_box) && (pos == -1))
info_box->hide(true); savescreen ? info_box->hide(true) : info_box->kill();
hint_painted = false; hint_painted = false;
} }
if (pos < 0) if (pos < 0)
@@ -1126,8 +1126,8 @@ void CMenuWidget::paintHint(int pos)
} }
//paint result //paint result
details_line->paint(); details_line->paint(savescreen);
info_box->paint(); info_box->paint(savescreen);
hint_painted = true; hint_painted = true;
} }