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