mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 23:42:58 +02:00
gui/widget/menue.cpp: try to disable 'always save/restore menu hint screens' (again)
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user