mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
kivy: minor fixes
This commit is contained in:
parent
fa17a2b869
commit
1f86dcdbba
2 changed files with 3 additions and 2 deletions
|
@ -85,6 +85,7 @@
|
||||||
TopLabel
|
TopLabel
|
||||||
id: lbl1
|
id: lbl1
|
||||||
text: root.text
|
text: root.text
|
||||||
|
pos_hint: {'top':1}
|
||||||
TopLabel
|
TopLabel
|
||||||
id: lbl2
|
id: lbl2
|
||||||
text: root.value
|
text: root.value
|
||||||
|
|
|
@ -505,8 +505,8 @@ class RequestsScreen(CScreen):
|
||||||
status = req.get('status')
|
status = req.get('status')
|
||||||
status = request_text[status]
|
status = request_text[status]
|
||||||
else:
|
else:
|
||||||
received = self.app.wallet.get_addr_received(address)
|
received_amount = self.app.wallet.get_addr_received(address)
|
||||||
status = self.app.format_amount_and_units(amount)
|
status = self.app.format_amount_and_units(received_amount)
|
||||||
|
|
||||||
self.app.show_pr_details(req, status, False)
|
self.app.show_pr_details(req, status, False)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue