1
0
Fork 0

Launcher: nicer looking summary transparency

This commit is contained in:
James Turner 2018-04-16 15:41:48 +01:00
parent bb0ba31fe0
commit 7ae8137b77

View file

@ -104,13 +104,12 @@ Item {
}
}
Rectangle {
id: summaryPanel
color: "white"
opacity: Style.panelOpacity
// radius: Style.roundRadius
border.width: 2
color: "transparent"
border.width: 1
border.color: Style.frameColor
anchors {
@ -122,6 +121,15 @@ Item {
height: summaryGrid.height + Style.margin * 2
// set opacity here only, so we don't make the whole summary pannel translucent
Rectangle {
id: background
anchors.fill: parent
z: -1
opacity: Style.panelOpacity
color: "white"
}
Grid {
id: summaryGrid
columns: 3