GODT-1008: Fix transparent Welcome message

This commit is contained in:
Alexander Bilyak
2021-02-01 01:45:50 +01:00
committed by Jakub Cuth
parent 837e0d3758
commit 52804c7039

View File

@ -38,6 +38,14 @@ StackLayout {
visible: root.visible
z: -1
// Looks like StackLayout explicatly sets visible=false to all viasual children except selected.
// We want this background to be also visible.
onVisibleChanged: {
if (visible != parent.visible) {
visible = parent.visible
}
}
AccessibleText {
id: titleText
anchors {