mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 07:51:27 +00:00
kivy: minor fix
This commit is contained in:
parent
36c6938299
commit
43b78ab0e1
1 changed files with 3 additions and 1 deletions
|
@ -191,10 +191,12 @@ class SendScreen(CScreen):
|
|||
except:
|
||||
self.app.show_info(_("Not a Bitcoin URI") + ':\n', text)
|
||||
return
|
||||
amount = uri.get('amount')
|
||||
self.screen.address = uri.get('address', '')
|
||||
self.screen.message = uri.get('message', '')
|
||||
amount = uri.get('amount')
|
||||
self.screen.amount = self.app.format_amount_and_units(amount) if amount else ''
|
||||
self.payment_request = None
|
||||
self.screen.is_pr = False
|
||||
|
||||
def update(self):
|
||||
pass
|
||||
|
|
Loading…
Add table
Reference in a new issue