Skip to content

Commit

Permalink
on_payment_succeeded: use notify instead of show_message
Browse files Browse the repository at this point in the history
  • Loading branch information
ecdsa committed Jun 17, 2020
1 parent e99a38e commit b9db163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electrum/gui/qt/main_window.py
Expand Up @@ -1486,7 +1486,7 @@ def on_invoice_status(self, key):

def on_payment_succeeded(self, key):
description = self.wallet.get_label(key)
self.show_message(_('Payment succeeded') + '\n\n' + description)
self.notify(_('Payment succeeded') + '\n\n' + description)
self.need_update.set()

def on_payment_failed(self, key, reason):
Expand Down

0 comments on commit b9db163

Please sign in to comment.