Index: sources/gui/qml/components/ModalDialog.qml =================================================================== diff -u -rc933552983a659ca4cc351ff4d43d07319adab1e -r94f7349bd073a732dba5295250fc0e26f740743c --- sources/gui/qml/components/ModalDialog.qml (.../ModalDialog.qml) (revision c933552983a659ca4cc351ff4d43d07319adab1e) +++ sources/gui/qml/components/ModalDialog.qml (.../ModalDialog.qml) (revision 94f7349bd073a732dba5295250fc0e26f740743c) @@ -25,11 +25,9 @@ * \brief The parent item for modal dialogs */ Dialog { id : _root - property bool blurOverlay: false - - width : Variables.poweroffWidth - height: Variables.poweroffHeight - visible: false + width : Variables.poweroffWidth + height : Variables.poweroffHeight + visible : false anchors.centerIn: parent enter: Transition { NumberAnimation { property: "opacity"; from: 0.0; to: 1.0 } } @@ -42,16 +40,9 @@ color: Colors.borderDialog } } - Component { id: _blurOverlay - FastBlur { id : _borderRect - anchors.fill: parent - source: _mainItem - radius: 25 - } - } closePolicy: Dialog.NoAutoClose - Overlay.modal : blurOverlay ? _blurOverlay : _rectOverlay + Overlay.modal : _rectOverlay background: Rectangle { id: _backgroundRect color : Colors.backgroundDialog