From 76e2ec4f2977423df75ec2ef3c3a809a31bf5f49 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Mon, 18 Dec 2017 11:49:43 +0100 Subject: [PATCH] settings_manager: fix issue tag on reset settings item Signed-off-by: Thilo Graf Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/35813ced0d159b6ebd9688c88cfad316fc9d0364 Author: vanhofen Date: 2017-12-18 (Mon, 18 Dec 2017) Origin message was: ------------------ - settings_manager: fix issue tag on reset settings item Signed-off-by: Thilo Graf --- src/gui/settings_manager.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/gui/settings_manager.cpp b/src/gui/settings_manager.cpp index a9544fdd8..3663e20fb 100644 --- a/src/gui/settings_manager.cpp +++ b/src/gui/settings_manager.cpp @@ -212,9 +212,8 @@ int CSettingsManager::showMenu() mset->addIntroItems(LOCALE_MAINSETTINGS_MANAGE); CMenuForwarder * mf; - mf = new CMenuForwarder(LOCALE_RESET_SETTINGS, true, NULL, resetNotifier, "settings", CRCInput::RC_recall); - - mf->setHint(NEUTRINO_ICON_HINT_RESET, LOCALE_MENU_HINT_RESET); // FIXME: RC-button RECALL is broken + mf = new CMenuForwarder(LOCALE_RESET_SETTINGS, true, NULL, resetNotifier, "settings"); + mf->setHint(NEUTRINO_ICON_HINT_RESET, LOCALE_MENU_HINT_RESET); mset->addItem(mf); mset->addItem(GenericMenuSeparatorLine); @@ -230,12 +229,10 @@ int CSettingsManager::showMenu() mset->addItem(GenericMenuSeparatorLine); mf = new CMenuForwarder(LOCALE_SETTINGS_BACKUP, true, NULL, this, "backup", CRCInput::RC_yellow); - mf->setHint(NEUTRINO_ICON_HINT_BACKUP, LOCALE_MENU_HINT_BACKUP); mset->addItem(mf); mf = new CMenuForwarder(LOCALE_SETTINGS_RESTORE, true, NULL, this, "restore", CRCInput::RC_blue); - mf->setHint(NEUTRINO_ICON_HINT_RESTORE, LOCALE_MENU_HINT_RESTORE); mset->addItem(mf);