Increase contrast between the popup and the background blur

This commit is contained in:
Loren Burkholder 2021-04-02 16:56:45 -04:00
parent e116ebe1ac
commit 2e7c3d4a2a

View file

@ -250,6 +250,13 @@ Item {
visible: false
opacity: 0
Rectangle {
anchors.fill: parent
z: parent.z - 1
opacity: 0.5
color: "gray"
}
TapHandler {
onTapped: popupRoot.hide()
}