From 1eb489b9616d956234a04c1ec6b2c3cf09d729f9 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 4 May 2025 11:13:03 +0200 Subject: [PATCH] Qt: set main_window.need_update if new transaction is added --- electrum/gui/qt/main_window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py index 1bf970a14..1fc988190 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -422,6 +422,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger, QtEventListener): def on_event_new_transaction(self, wallet, tx): if wallet == self.wallet: self.tx_notification_queue.put(tx) + self.need_update.set() @qt_event_listener def on_event_status(self):