diff options
author | Ken Moore <ken@pcbsd.org> | 2015-06-12 08:33:51 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-06-12 08:33:51 -0400 |
commit | 7b489310d13b2c825b1f0df31f945f3b3299767d (patch) | |
tree | 8501afa59ee50c31898f1d67ee37ec2a221ee9b6 /libLumina | |
parent | Oops, fix a typo where the accent color was still being used for the highligh... (diff) | |
download | lumina-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 'libLumina')
-rw-r--r-- | libLumina/quickplugins/sample.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libLumina/quickplugins/sample.qml b/libLumina/quickplugins/sample.qml new file mode 100644 index 00000000..b12702ba --- /dev/null +++ b/libLumina/quickplugins/sample.qml @@ -0,0 +1,7 @@ +import QtQuick.Controls 1.3 + +Label { + text: "Sample" + color: "blue" + font.bold: true +}
\ No newline at end of file |