Browse Source

kivy request dialog: follow-up c95791d7ee

related https://github.com/spesmilo/electrum/pull/7929
patch-4
SomberNight 2 years ago
parent
commit
13570a465c
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 3
      electrum/gui/kivy/uix/dialogs/request_dialog.py
  2. 2
      electrum/wallet.py

3
electrum/gui/kivy/uix/dialogs/request_dialog.py

@ -172,9 +172,6 @@ class RequestDialog(Factory.Popup):
qr_data = qr_data.upper() qr_data = qr_data.upper()
if qr_data: if qr_data:
self.ids.qr.set_data(qr_data) self.ids.qr.set_data(qr_data)
self.ids.qr.opacity = 1
else:
self.ids.qr.opacity = 0
if not qr_data and self.error_text: if not qr_data and self.error_text:
self.show_text = True self.show_text = True
else: else:

2
electrum/wallet.py

@ -2847,7 +2847,7 @@ class Abstract_Wallet(ABC, Logger, EventListener):
if status == PR_EXPIRED: if status == PR_EXPIRED:
address_help = URI_help = ln_help = _('This request has expired') address_help = URI_help = ln_help = _('This request has expired')
is_amt_too_small_for_onchain = amount_sat < self.dust_threshold() is_amt_too_small_for_onchain = amount_sat and amount_sat < self.dust_threshold()
if not addr: if not addr:
address_is_error = True address_is_error = True
address_help = _('This request cannot be paid on-chain') address_help = _('This request cannot be paid on-chain')

Loading…
Cancel
Save