aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/systemtray/LSysTray.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-10-22 09:46:32 -0400
committerKen Moore <ken@pcbsd.org>2014-10-22 09:46:32 -0400
commit6466d50172e68149eb465a3ba1be73df745bf0f6 (patch)
treec9742c0840e8ea9c895e3c7bd0bfdd13f46b460a /lumina-desktop/panel-plugins/systemtray/LSysTray.h
parentAdd randomization to the wallpaper image that is used on first start of a des... (diff)
downloadlumina-6466d50172e68149eb465a3ba1be73df745bf0f6.tar.gz
lumina-6466d50172e68149eb465a3ba1be73df745bf0f6.tar.bz2
lumina-6466d50172e68149eb465a3ba1be73df745bf0f6.zip
Fix the system tray checking to once run one at a time (to prevent possible conflict with different loops modifying tray icons at the same time). This might fix the random desktop crashes since they seem to be tray related.
Diffstat (limited to 'lumina-desktop/panel-plugins/systemtray/LSysTray.h')
-rw-r--r--lumina-desktop/panel-plugins/systemtray/LSysTray.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/systemtray/LSysTray.h b/lumina-desktop/panel-plugins/systemtray/LSysTray.h
index 7f8386fc..f45a52ad 100644
--- a/lumina-desktop/panel-plugins/systemtray/LSysTray.h
+++ b/lumina-desktop/panel-plugins/systemtray/LSysTray.h
@@ -31,7 +31,7 @@ public:
~LSysTray();
private:
- bool isRunning, stopping;
+ bool isRunning, stopping, checking;
QList<TrayIcon*> trayIcons;
QFrame *frame;
QBoxLayout *LI; //layout items
bgstack15