electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit d6e293052a858cb55427bac2fdcb4b742d91135e
parent 8a656d648bfc3797dca9c0fc3e1c37af19d74d29
Author: ThomasV <thomasv@electrum.org>
Date:   Mon, 25 Jan 2021 13:34:40 +0100

Qt: set need_update on payment received (minor fix)

Diffstat:
Melectrum/gui/qt/main_window.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py @@ -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)