From 74b1a181c5bb7424993ad8cc1b4692777c8bae7e Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Fri, 29 Nov 2013 11:46:22 +0400 Subject: [PATCH] gui/widget/menue.cpp: try to disable 'always save/restore menu hint screens' (again) Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/8aa819642da345cd7212a756660feacf6b30a6fa Author: [CST] Focus Date: 2013-11-29 (Fri, 29 Nov 2013) --- src/gui/widget/menue.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/widget/menue.cpp b/src/gui/widget/menue.cpp index 13594279f..be8e7a9e0 100644 --- a/src/gui/widget/menue.cpp +++ b/src/gui/widget/menue.cpp @@ -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; }