1
0

kivy request dialog: follow-up c95791d7ee

related https://github.com/spesmilo/electrum/pull/7929
This commit is contained in:
SomberNight
2022-08-12 11:10:54 +00:00
parent fceceaec97
commit 13570a465c
2 changed files with 1 additions and 4 deletions

View File

@@ -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:

View File

@@ -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')