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

Origin commit data
------------------
Branch: ni/coolstream
Commit: 8aa819642d
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-11-29 (Fri, 29 Nov 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2013-11-29 11:46:22 +04:00
parent 0f48adcd6a
commit 097cf83117

View File

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