Index: sources/gui/qml/components/ModalDialog.qml =================================================================== diff -u -rf148379112a69d1c52027f2667e95f3f96d948ad -r17f0906011de9c97c0950c1ba0ea627a1411bc2e --- sources/gui/qml/components/ModalDialog.qml (.../ModalDialog.qml) (revision f148379112a69d1c52027f2667e95f3f96d948ad) +++ sources/gui/qml/components/ModalDialog.qml (.../ModalDialog.qml) (revision 17f0906011de9c97c0950c1ba0ea627a1411bc2e) @@ -26,8 +26,11 @@ Dialog { id : _root property bool autoHide : false property int autoHideDuration : 1000 - property alias notificationText : _notification.text + property string notificationText : "" + // TEST : Debug Code + property alias notification: _notification + width : Variables.dialogWidth height : Variables.dialogHeight @@ -68,5 +71,7 @@ } } - NotificationBar { id: _notification } + NotificationBar { id: _notification + text: _root.notificationText + } }