diff options
author | Ken Moore <ken@ixsystems.com> | 2018-01-19 14:53:04 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2018-01-19 14:53:04 -0500 |
commit | 8ab77628db56aba8e9295ede63c56d9312e4262a (patch) | |
tree | ac44b95b7b26cf8db489a199089fd4319bb3dcc4 /src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml | |
parent | Merge branch 'master' of github.com:trueos/lumina (diff) | |
download | lumina-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/NativeWindow.qml')
-rw-r--r-- | src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/NativeWindow.qml | 3 |
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 |