aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LSession.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-06-12 08:33:51 -0400
committerKen Moore <ken@pcbsd.org>2015-06-12 08:33:51 -0400
commit7b489310d13b2c825b1f0df31f945f3b3299767d (patch)
tree8501afa59ee50c31898f1d67ee37ec2a221ee9b6 /lumina-desktop/LSession.cpp
parentOops, fix a typo where the accent color was still being used for the highligh... (diff)
downloadlumina-7b489310d13b2c825b1f0df31f945f3b3299767d.tar.gz
lumina-7b489310d13b2c825b1f0df31f945f3b3299767d.tar.bz2
lumina-7b489310d13b2c825b1f0df31f945f3b3299767d.zip
Add a QtQuick sample plugin and disable the new panel container for QtQuick pluins. It appears that there is a fundamental issue with embedding QML objects into a panel/window with the "always on top" flag set - it never finishes painting the QML object and prevents the rest of the panel from being updated as well.
Diffstat (limited to 'lumina-desktop/LSession.cpp')
-rw-r--r--lumina-desktop/LSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/LSession.cpp b/lumina-desktop/LSession.cpp
index aeb3e624..d6b6e891 100644
--- a/lumina-desktop/LSession.cpp
+++ b/lumina-desktop/LSession.cpp
@@ -25,7 +25,7 @@
#include <X11/extensions/Xdamage.h>
#ifndef DEBUG
-#define DEBUG 1
+#define DEBUG 0
#endif
XCBEventFilter *evFilter = 0;
bgstack15