From 94e7e43dfec5380cec889fbdfadfd9f5792aef98 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Wed, 13 Dec 2023 15:24:02 +0100 Subject: [PATCH] macos: hww: fix UI unresponsiveness --- src/MainWindow.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 7db1f1d..39d47e5 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -765,6 +765,14 @@ void MainWindow::onTransactionCreated(PendingTransaction *tx, const QVectorstatus() != PendingTransaction::Status_Ok) { + if (m_showDeviceError) { + // The hardware devices has disconnected during tx construction. + // Due to a macOS-specific Qt bug, we have to prevent it from stacking two QMessageBoxes, otherwise + // the UI becomes unresponsive. The reconnect dialog should take priority. + m_wallet->disposeTransaction(tx); + return; + } + QString errMsg = tx->errorString(); Utils::Message message{this, Utils::ERROR, "Failed to construct transaction", errMsg};