tQt: set need_update on payment received (minor fix) - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit d6e293052a858cb55427bac2fdcb4b742d91135e DIR parent 8a656d648bfc3797dca9c0fc3e1c37af19d74d29 HTML Author: ThomasV <thomasv@electrum.org> Date: Mon, 25 Jan 2021 13:34:40 +0100 Qt: set need_update on payment received (minor fix) Diffstat: M electrum/gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py t@@ -1522,7 +1522,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger): return if status == PR_PAID: self.notify(_('Payment received') + '\n' + key) - self.request_list.update() + self.need_update.set() else: self.request_list.update_item(key, req)