aboutsummaryrefslogtreecommitdiff
path: root/dev-tools
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-09-15 19:02:00 -0400
committerKen Moore <moorekou@gmail.com>2015-09-15 19:02:00 -0400
commit043cb2ef441b4ee46961ed837fedab082db14ceb (patch)
tree8f070d92e9b589d2cce1b1f522dfaac0d4ca6631 /dev-tools
parentAdjust the theming of the calendar widgets so that the day/week are a bit mor... (diff)
downloadlumina-043cb2ef441b4ee46961ed837fedab082db14ceb.tar.gz
lumina-043cb2ef441b4ee46961ed837fedab082db14ceb.tar.bz2
lumina-043cb2ef441b4ee46961ed837fedab082db14ceb.zip
Finally fix up the system tray updates:
Found out that (at least on FreeBSD 10.2 right now), the xcb_damage_create() routine does absolutely nothing (no damage events ever sent out when the window changes). Switching this back to the Xlib XDamageCreate() routine makes it work perfectly again. Need to ask about this upstream and see if this is a known bug/regression in the XCB libraries.
Diffstat (limited to 'dev-tools')
-rw-r--r--dev-tools/systray-tester/Trayapp.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/dev-tools/systray-tester/Trayapp.h b/dev-tools/systray-tester/Trayapp.h
index 54fa8a6b..a16e1127 100644
--- a/dev-tools/systray-tester/Trayapp.h
+++ b/dev-tools/systray-tester/Trayapp.h
@@ -3,6 +3,7 @@
#include <QSystemTrayIcon>
#include <QMenu>
#include <QTimer>
+#include <QDebug>
#include <LuminaXDG.h>
@@ -18,6 +19,7 @@ private slots:
this->setToolTip("Icon Number:"+QString::number(iconnum));
QString ico;
//Rotate the icon every time
+ qDebug() << "Changing Icon:" << iconnum;
if(iconnum <=0){ ico = "arrow-left"; iconnum=1; }
else if(iconnum==1){ ico = "arrow-up"; iconnum=2; }
else if(iconnum==2){ ico = "arrow-right"; iconnum=3; }
bgstack15