Index: sources/gui/qml/components/EntryDialog.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r799431fc75a1fbe1b874f08344c009c6b511047d --- sources/gui/qml/components/EntryDialog.qml (.../EntryDialog.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/components/EntryDialog.qml (.../EntryDialog.qml) (revision 799431fc75a1fbe1b874f08344c009c6b511047d) @@ -34,7 +34,7 @@ signal closeClicked() signal confirmClicked() signal opened () - signal closed () + signal closed ( bool vQuit ) property bool closeVisible : true @@ -53,12 +53,11 @@ property alias notification : _notification property alias titleText : _titleText.text + function open ( ) { opacity = 1 + opened ( ) } + function close ( vQuit ) { opacity = 0 + closed ( vQuit ) } - function open () { opacity = 1 - opened () } - function close () { opacity = 0 - closed () } - width : Variables.applicationWidth height : Variables.applicationHeight opacity : 0