use the window color to dim

This commit is contained in:
Marco Martin 2019-09-18 15:52:42 +02:00
parent 77ae2a21f0
commit 5717c71a82

View file

@ -31,7 +31,7 @@ NanoShell.FullScreenPanel {
property bool userInteracting: false
property bool expanded: false
color: "transparent"
color: Qt.rgba(0, 0, 0, 0.6 * Math.min(1, offset/contentArea.height))
property alias contents: contentArea.data
property int headerHeight
@ -111,11 +111,6 @@ NanoShell.FullScreenPanel {
to: contentArea.height
}
Rectangle {
anchors.fill: parent
color: Qt.rgba(0, 0, 0, 0.6 * Math.min(1, offset/contentArea.height))
}
PlasmaCore.ColorScope {
anchors.fill: parent
y: Math.min(0, -height + window.offset)