mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 16:01:30 +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:
|
except:
|
||||||
self.app.show_info(_("Not a Bitcoin URI") + ':\n', text)
|
self.app.show_info(_("Not a Bitcoin URI") + ':\n', text)
|
||||||
return
|
return
|
||||||
|
amount = uri.get('amount')
|
||||||
self.screen.address = uri.get('address', '')
|
self.screen.address = uri.get('address', '')
|
||||||
self.screen.message = uri.get('message', '')
|
self.screen.message = uri.get('message', '')
|
||||||
amount = uri.get('amount')
|
|
||||||
self.screen.amount = self.app.format_amount_and_units(amount) if amount else ''
|
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):
|
def update(self):
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Add table
Reference in a new issue