aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/src-cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-05-16 08:01:56 -0400
committerKen Moore <ken@ixsystems.com>2018-05-16 08:01:56 -0400
commit4237f6153cad063a27148099e8b788bb814b5017 (patch)
treebadaab6868751869aba77e1f97e660b5d883390f /src-qt5/src-cpp
parentUpdate a bunch of other icon routines in OSInterface to accomodate probing th... (diff)
downloadlumina-4237f6153cad063a27148099e8b788bb814b5017.tar.gz
lumina-4237f6153cad063a27148099e8b788bb814b5017.tar.bz2
lumina-4237f6153cad063a27148099e8b788bb814b5017.zip
Get more of the system status indicators up and running properly.
Add a new button for system update status.
Diffstat (limited to 'src-qt5/src-cpp')
-rw-r--r--src-qt5/src-cpp/framework-OSInterface_private.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/src-cpp/framework-OSInterface_private.cpp b/src-qt5/src-cpp/framework-OSInterface_private.cpp
index ad10ffe3..b0a22b1d 100644
--- a/src-qt5/src-cpp/framework-OSInterface_private.cpp
+++ b/src-qt5/src-cpp/framework-OSInterface_private.cpp
@@ -530,6 +530,7 @@ void OSInterface::syncUpdateInfo(OSInterface *os, QHash<QString, QVariant> *hash
status="available"; icons << "state-warning" << "update-medium" << "security-medium";
}
icons << "state-offline" << "update-none";
+ //qDebug() << "Update Sync:" << status << icons;
//Save the current info into the hash (if different)
if(status != updateStatus()){
hash->insert("updates/status", status);
bgstack15