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

This commit is contained in:
ThomasV 2016-08-02 12:03:53 +02:00
parent b0f6b8578e
commit ecf398c95e

View file

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