kivy: minor fixes

This commit is contained in:
ThomasV 2016-02-18 06:58:46 +01:00
parent fa17a2b869
commit 1f86dcdbba
2 changed files with 3 additions and 2 deletions

View File

@ -85,6 +85,7 @@
TopLabel
id: lbl1
text: root.text
pos_hint: {'top':1}
TopLabel
id: lbl2
text: root.value

View File

@ -505,8 +505,8 @@ class RequestsScreen(CScreen):
status = req.get('status')
status = request_text[status]
else:
received = self.app.wallet.get_addr_received(address)
status = self.app.format_amount_and_units(amount)
received_amount = self.app.wallet.get_addr_received(address)
status = self.app.format_amount_and_units(received_amount)
self.app.show_pr_details(req, status, False)