qml: ExceptionDialog: feedback from sendReport needs even higher z
follow-up 1559129016
This commit is contained in:
@@ -17,7 +17,7 @@ ElDialog
|
|||||||
|
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: parent.height
|
height: parent.height
|
||||||
z: 1000 // assure topmost of all other dialogs
|
z: 1000 // assure topmost of all other dialogs. note: child popups need even higher!
|
||||||
|
|
||||||
header: null
|
header: null
|
||||||
|
|
||||||
@@ -135,7 +135,8 @@ ElDialog
|
|||||||
_sending = false
|
_sending = false
|
||||||
var dialog = app.messageDialog.createObject(app, {
|
var dialog = app.messageDialog.createObject(app, {
|
||||||
text: text,
|
text: text,
|
||||||
richText: true
|
richText: true,
|
||||||
|
z: 1001 // assure topmost of all other dialogs
|
||||||
})
|
})
|
||||||
dialog.open()
|
dialog.open()
|
||||||
close()
|
close()
|
||||||
@@ -146,7 +147,8 @@ ElDialog
|
|||||||
title: qsTr('Error'),
|
title: qsTr('Error'),
|
||||||
iconSource: Qt.resolvedUrl('../../icons/warning.png'),
|
iconSource: Qt.resolvedUrl('../../icons/warning.png'),
|
||||||
text: text,
|
text: text,
|
||||||
richText: true
|
richText: true,
|
||||||
|
z: 1001 // assure topmost of all other dialogs
|
||||||
})
|
})
|
||||||
dialog.open()
|
dialog.open()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user