From ecf398c95e0b69892f714d4e6428e50c54403169 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 2 Aug 2016 12:03:53 +0200 Subject: [PATCH] fix display of 'payment sent' message (indentation has been broken in 8f91af2) --- gui/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 index 7fd2f365..ec9ad014 100644 --- 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)