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 {