aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 157001c6..dacb7b55 100644
--- a/lumina-desktop/panel-plugins/systemtray/LSysTray.cpp
+++ b/lumina-desktop/panel-plugins/systemtray/LSysTray.cpp
@@ -186,9 +186,9 @@ void LSysTray::checkAll(){
this->setMaximumSize(10000, trayIcons.length()*this->width());
}
}else{
- //Tray Icon already exists: just update it
+ //Tray Icon already exists
//qDebug() << " - SysTray: Update Icon";
- trayIcons[i]->update();
+ //trayIcons[i]->update();
wins.removeAt(index); //Already found - remove from the list
}
}
bgstack15