Icons: change check markers, rename to dialog on/off, add update marker

This commit is contained in:
2018-04-11 16:42:22 +02:00
parent 8c5ab1b22b
commit ee0f90d083
10 changed files with 21 additions and 15 deletions

View File

@@ -5,7 +5,7 @@
OPKG-Manager Class for Neutrino-GUI
Implementation:
Copyright (C) 2012-2015 T. Graf 'dbt'
Copyright (C) 2012-2018 T. Graf 'dbt'
www.dbox2-tuning.net
Adaptions:
@@ -433,10 +433,10 @@ void COPKGManager::updateMenu()
it->second.forwarder->iconName_Info_right = "";
it->second.forwarder->setActive(true);
if (it->second.upgradable) {
it->second.forwarder->iconName_Info_right = NEUTRINO_ICON_WARNING;
it->second.forwarder->iconName_Info_right = NEUTRINO_ICON_MARKER_UPDATE_AVAILABLE;
upgradesAvailable = true;
} else if (it->second.installed) {
it->second.forwarder->iconName_Info_right = NEUTRINO_ICON_CHECKMARK;
it->second.forwarder->iconName_Info_right = NEUTRINO_ICON_MARKER_DIALOG_OK;
it->second.forwarder->setActive(expert_mode);
}
}