aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-01-19 15:29:36 -0500
committerKen Moore <ken@ixsystems.com>2018-01-19 15:29:36 -0500
commit0f7272f3bf78e65103a6a3448ea155b28e00aad2 (patch)
tree2ba3728e9c962b28c3ca5b84de68554e0e9288ed /src-qt5/core/lumina-desktop-unified/src-desktop
parentGet some more of Lumina 2 cleaned up: (diff)
downloadlumina-0f7272f3bf78e65103a6a3448ea155b28e00aad2.tar.gz
lumina-0f7272f3bf78e65103a6a3448ea155b28e00aad2.tar.bz2
lumina-0f7272f3bf78e65103a6a3448ea155b28e00aad2.zip
a Couple more minor tweaks.
Have lumina-textedit treat .qml as javascript for syntax highlighting
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/src-desktop')
-rw-r--r--src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml9
1 files changed, 8 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml b/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml
index 19ff4da9..67d4b748 100644
--- a/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml
+++ b/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml
@@ -18,7 +18,7 @@ Rectangle {
border.width: 5
border.color: palette.highlight
radius: 5
- color: palette.window
+ color: palette.window //"transparent"
x: object.frameGeometry.x
y: object.frameGeometry.y
width: object.frameGeometry.width
@@ -202,6 +202,13 @@ Rectangle {
anchors.bottomMargin: windowFrame.border.width
width: parent.width
height: parent.height
+ //color: palette.window
+
+ //Image {
+ //anchors.fill: frameContents
+ //cache: false
+ //source: windowFrame.object.winImage
+ //}
MouseArea {
width: parent.width
bgstack15