electrum

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

commit ecf398c95e0b69892f714d4e6428e50c54403169
parent b0f6b8578ef36559bc243fb7765a5e2e4420d44c
Author: ThomasV <thomasv@electrum.org>
Date:   Tue,  2 Aug 2016 12:03:53 +0200

fix display of 'payment sent' message (indentation has been broken in 8f91af2)

Diffstat:
Mgui/qt/main_window.py | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -1283,9 +1283,9 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): if status: if tx_desc is not None and tx.is_complete(): self.wallet.set_label(tx.hash(), tx_desc) - parent.show_message(_('Payment sent.') + '\n' + msg) - self.invoice_list.update() - self.do_clear() + parent.show_message(_('Payment sent.') + '\n' + msg) + self.invoice_list.update() + self.do_clear() else: parent.show_error(msg)