Index: sources/gui/qml/components/ModalDialog.qml =================================================================== diff -u -r6d9c4aac8f998f25825b18004350ce1217f70897 -rf8e37a0cbb537edceebee7a7c5f2676f497d1e26 --- sources/gui/qml/components/ModalDialog.qml (.../ModalDialog.qml) (revision 6d9c4aac8f998f25825b18004350ce1217f70897) +++ sources/gui/qml/components/ModalDialog.qml (.../ModalDialog.qml) (revision f8e37a0cbb537edceebee7a7c5f2676f497d1e26) @@ -41,7 +41,8 @@ visible : false x: Math.round((Variables.applicationWidth - width) / 2) - y: Math.round((Variables.applicationHeight - height) / 2) - Variables.notificationHeight + y: Math.round((Variables.applicationHeight - height) / 2) + enter: Transition { NumberAnimation { property: "opacity"; from: 0.0; to: 1.0; duration: 200 } } exit : Transition { NumberAnimation { property: "opacity"; from: 1.0; to: 0.0; duration: 200 } }