Set a different background color for window and headers

This commit is contained in:
Christian Muehlhaeuser 2019-05-11 00:54:32 +02:00
parent 66b31c1eb0
commit f30901fdc9
No known key found for this signature in database
GPG key ID: 3CF9FA45CA1EBB7E
2 changed files with 7 additions and 0 deletions

View file

@ -35,6 +35,10 @@ ColumnLayout {
Pane {
anchors.fill: parent
opacity: 0.8
background: Rectangle {
color: Material.color(Material.Grey, Material.Shade900)
}
}
}
}

View file

@ -10,6 +10,9 @@ ApplicationWindow {
Material.theme: settings.style == "Dark" ? Material.Dark : Material.Light
Material.accent: Material.Purple
// flags: Qt.FramelessWindowHint
background: Rectangle {
color: Material.color(Material.Grey, Material.Shade900)
}
minimumWidth: 790
minimumHeight: 590