aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-01-19 14:53:04 -0500
committerKen Moore <ken@ixsystems.com>2018-01-19 14:53:04 -0500
commit8ab77628db56aba8e9295ede63c56d9312e4262a (patch)
treeac44b95b7b26cf8db489a199089fd4319bb3dcc4 /src-qt5/core/lumina-desktop-unified/src-desktop/src-qml
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-8ab77628db56aba8e9295ede63c56d9312e4262a.tar.gz
lumina-8ab77628db56aba8e9295ede63c56d9312e4262a.tar.bz2
lumina-8ab77628db56aba8e9295ede63c56d9312e4262a.zip
Get some more of Lumina 2 cleaned up:
1. Ensure window visibility is managed on the QML side 2. Have all panels (even ones pinned to a screen) get created by the root window QML (for layering purposes) 3. Change the default panel setting to include partial-transparency
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/src-desktop/src-qml')
-rw-r--r--src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml3
1 files changed, 2 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 2150e37c..19ff4da9 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
@@ -14,10 +14,11 @@ Rectangle {
SystemPalette { id:palette }
id: windowFrame
+ visible: object.isVisible
border.width: 5
border.color: palette.highlight
radius: 5
- color: "transparent" //palette.window
+ color: palette.window
x: object.frameGeometry.x
y: object.frameGeometry.y
width: object.frameGeometry.width
bgstack15