1
0

qml: ExceptionDialog: feedback from sendReport needs even higher z

follow-up 1559129016
This commit is contained in:
SomberNight
2025-07-18 15:25:01 +00:00
parent eef562389c
commit 627f5a88b3

View File

@@ -17,7 +17,7 @@ ElDialog
width: parent.width
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
@@ -135,7 +135,8 @@ ElDialog
_sending = false
var dialog = app.messageDialog.createObject(app, {
text: text,
richText: true
richText: true,
z: 1001 // assure topmost of all other dialogs
})
dialog.open()
close()
@@ -146,7 +147,8 @@ ElDialog
title: qsTr('Error'),
iconSource: Qt.resolvedUrl('../../icons/warning.png'),
text: text,
richText: true
richText: true,
z: 1001 // assure topmost of all other dialogs
})
dialog.open()
}