mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 17:01:34 +00:00
fix display of 'payment sent' message (indentation has been broken in 8f91af2
)
This commit is contained in:
parent
b0f6b8578e
commit
ecf398c95e
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue