From 627f5a88b341798e6629e1b39ac79dff0cff8011 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 18 Jul 2025 15:25:01 +0000 Subject: [PATCH] qml: ExceptionDialog: feedback from sendReport needs even higher `z` follow-up https://github.com/spesmilo/electrum/commit/1559129016a21dfa74a34287c35a9e6cecf270ff --- electrum/gui/qml/components/ExceptionDialog.qml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/electrum/gui/qml/components/ExceptionDialog.qml b/electrum/gui/qml/components/ExceptionDialog.qml index 9ca9f8026..3a60ae22a 100644 --- a/electrum/gui/qml/components/ExceptionDialog.qml +++ b/electrum/gui/qml/components/ExceptionDialog.qml @@ -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() }