aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/systemtray/LSysTray.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-09-10 12:38:20 -0400
committerKen Moore <moorekou@gmail.com>2015-09-10 12:38:20 -0400
commit86543e806e27b8317eddce54fee9e0b04a031b51 (patch)
tree5f9046202839cbc6dc7b9b2aa9d6ad088ed811f9 /lumina-desktop/panel-plugins/systemtray/LSysTray.cpp
parentMerge pull request #154 from harcobbit/issue/11233 (diff)
downloadlumina-86543e806e27b8317eddce54fee9e0b04a031b51.tar.gz
lumina-86543e806e27b8317eddce54fee9e0b04a031b51.tar.bz2
lumina-86543e806e27b8317eddce54fee9e0b04a031b51.zip
Add a new panel plugin: systemstart
This plugins is an overall "start" menu for the system, combining the functionality of the userbutton and the system dashboard into a single unified interface.
Diffstat (limited to 'lumina-desktop/panel-plugins/systemtray/LSysTray.cpp')
-rw-r--r--lumina-desktop/panel-plugins/systemtray/LSysTray.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/panel-plugins/systemtray/LSysTray.cpp b/lumina-desktop/panel-plugins/systemtray/LSysTray.cpp
index d1486371..220c7858 100644
--- a/lumina-desktop/panel-plugins/systemtray/LSysTray.cpp
+++ b/lumina-desktop/panel-plugins/systemtray/LSysTray.cpp
@@ -102,7 +102,7 @@ void LSysTray::checkAll(){
}else{
//Tray Icon already exists
//qDebug() << " - SysTray: Update Icon";
- //trayIcons[i]->update();
+ trayIcons[i]->update();
wins.removeAt(index); //Already found - remove from the list
}
}
@@ -149,7 +149,7 @@ void LSysTray::UpdateTrayWindow(WId win){
if(!isRunning || stopping || checking){ return; }
for(int i=0; i<trayIcons.length(); i++){
if(trayIcons[i]->appID()==win){
- //qDebug() << "System Tray: Update Window " << win;
+ qDebug() << "System Tray: Update Window " << win;
trayIcons[i]->update();
QTimer::singleShot(1000, trayIcons[i], SLOT(update()) );
return; //finished now
bgstack15