Index: sources/gui/qml/components/ModalDialog.qml =================================================================== diff -u -rc0dfe1c7bc5f1664d0d8b3fc0cd47282095539b3 -r4a6abe765f03feae8100ec660aa04aa218d4dfa3 --- sources/gui/qml/components/ModalDialog.qml (.../ModalDialog.qml) (revision c0dfe1c7bc5f1664d0d8b3fc0cd47282095539b3) +++ sources/gui/qml/components/ModalDialog.qml (.../ModalDialog.qml) (revision 4a6abe765f03feae8100ec660aa04aa218d4dfa3) @@ -15,7 +15,6 @@ // Qt import QtQuick 2.12 import QtQuick.Controls 2.12 -import QtGraphicalEffects 1.0 // Project // Qml imports @@ -37,16 +36,14 @@ exit : Transition { NumberAnimation { property: "opacity"; from: 1.0; to: 0.0 } } modal: true - Component { id: _rectOverlay - Rectangle { id : _borderRect - anchors.fill: parent - color: Colors.borderDialog - } - } closePolicy: Dialog.NoAutoClose - Overlay.modal : _rectOverlay + Overlay.modal : Rectangle { id : _borderRect + anchors.fill: parent + color: Colors.borderDialog + } + background: Rectangle { id: _backgroundRect color : Colors.backgroundDialog radius: Variables.dialogRadius