aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/NewPP.h
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/panel-plugins/NewPP.h
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/panel-plugins/NewPP.h')
-rw-r--r--lumina-desktop/panel-plugins/NewPP.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lumina-desktop/panel-plugins/NewPP.h b/lumina-desktop/panel-plugins/NewPP.h
index 78b942d0..2a061a23 100644
--- a/lumina-desktop/panel-plugins/NewPP.h
+++ b/lumina-desktop/panel-plugins/NewPP.h
@@ -24,7 +24,7 @@
#include "showdesktop/LHomeButton.h"
#include "appmenu/LAppMenuPlugin.h"
#include "applauncher/AppLaunchButton.h"
-#include "quickcontainer/QuickPPlugin.h"
+//#include "quickcontainer/QuickPPlugin.h"
#include "systemtray/LSysTray.h" //must be last due to X11 compile issues
class NewPP{
@@ -56,8 +56,8 @@ public:
plug = new LAppMenuPlugin(parent, plugin, horizontal);
}else if(plugin.section("---",0,0).section("::",0,0)=="applauncher"){
plug = new AppLaunchButtonPlugin(parent, plugin, horizontal);
- }else if( plugin.section("---",0,0).startsWith("quick-") && LUtils::validQuickPlugin(plugin.section("---",0,0)) ){
- plug = new QuickPPlugin(parent, plugin, horizontal);
+ //}else if( plugin.section("---",0,0).startsWith("quick-") && LUtils::validQuickPlugin(plugin.section("---",0,0)) ){
+ //plug = new QuickPPlugin(parent, plugin, horizontal);
}else{
qWarning() << "Invalid Panel Plugin:"<<plugin << " -- Ignored";
}
bgstack15