diff options
author | Ken Moore <ken@ixsystems.com> | 2018-01-19 15:29:36 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2018-01-19 15:29:36 -0500 |
commit | 0f7272f3bf78e65103a6a3448ea155b28e00aad2 (patch) | |
tree | 2ba3728e9c962b28c3ca5b84de68554e0e9288ed /src-qt5/core/lumina-desktop-unified/src-desktop | |
parent | Get some more of Lumina 2 cleaned up: (diff) | |
download | lumina-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.qml | 9 |
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 |