mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-18 08:06:59 +00:00
GODT-1008: Fix transparent Welcome message
This commit is contained in:
committed by
Jakub Cuth
parent
837e0d3758
commit
52804c7039
@ -38,6 +38,14 @@ StackLayout {
|
|||||||
visible: root.visible
|
visible: root.visible
|
||||||
z: -1
|
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 {
|
AccessibleText {
|
||||||
id: titleText
|
id: titleText
|
||||||
anchors {
|
anchors {
|
||||||
|
|||||||
Reference in New Issue
Block a user