diff options
author | Ken Moore <moorekou@gmail.com> | 2015-08-07 13:36:29 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-08-07 13:36:29 -0400 |
commit | 2034d9aa2d1a7bae5a47d89ddf0f5198be9cb01b (patch) | |
tree | df68ffbe3bbf93cfce832b84b4535b7603ff0c8d /lumina-desktop/panel-plugins | |
parent | Fix up the file/dir removal options within the userbutton. (diff) | |
download | lumina-2034d9aa2d1a7bae5a47d89ddf0f5198be9cb01b.tar.gz lumina-2034d9aa2d1a7bae5a47d89ddf0f5198be9cb01b.tar.bz2 lumina-2034d9aa2d1a7bae5a47d89ddf0f5198be9cb01b.zip |
Turn off some debugging within the system tray plugin, cleanup the message logging routine, and fix a bug in the autostart loop procedures
Diffstat (limited to 'lumina-desktop/panel-plugins')
-rw-r--r-- | lumina-desktop/panel-plugins/systemtray/LSysTray.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/systemtray/LSysTray.cpp b/lumina-desktop/panel-plugins/systemtray/LSysTray.cpp index 461a73e6..d1486371 100644 --- a/lumina-desktop/panel-plugins/systemtray/LSysTray.cpp +++ b/lumina-desktop/panel-plugins/systemtray/LSysTray.cpp @@ -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 |