From 6a6205103296e531e49100580f93f347f87db6ff Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Thu, 12 Dec 2013 14:54:13 +0400 Subject: [PATCH] gui/widget/menue.cpp: fix menu hint kill vs hide --- src/gui/widget/menue.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/widget/menue.cpp b/src/gui/widget/menue.cpp index 80d950993..1212cf158 100644 --- a/src/gui/widget/menue.cpp +++ b/src/gui/widget/menue.cpp @@ -785,8 +785,8 @@ void CMenuWidget::checkHints() break; } } - if (has_hints) - GenericMenuBack->setHint(NEUTRINO_ICON_HINT_BACK, LOCALE_MENU_HINT_BACK); + //if (has_hints) + // GenericMenuBack->setHint(NEUTRINO_ICON_HINT_BACK, LOCALE_MENU_HINT_BACK); } void CMenuWidget::calcSize() @@ -1081,7 +1081,7 @@ void CMenuWidget::paintHint(int pos) if (item->hintIcon.empty() && item->hint == NONEXISTANT_LOCALE) { if (info_box) { - info_box->kill(); + savescreen ? info_box->hide(false) : info_box->kill(); hint_painted = false; } return;