From 52804c7039140bb758c5eab6c177470b541e4e66 Mon Sep 17 00:00:00 2001 From: Alexander Bilyak Date: Mon, 1 Feb 2021 01:45:50 +0100 Subject: [PATCH] GODT-1008: Fix transparent Welcome message --- internal/frontend/qml/ProtonUI/Dialog.qml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/internal/frontend/qml/ProtonUI/Dialog.qml b/internal/frontend/qml/ProtonUI/Dialog.qml index c0f280b1..4749bbc5 100644 --- a/internal/frontend/qml/ProtonUI/Dialog.qml +++ b/internal/frontend/qml/ProtonUI/Dialog.qml @@ -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 {