1
0

kivy: updates

This commit is contained in:
ThomasV
2015-12-05 18:14:17 +01:00
parent 84b18e0949
commit 9b2885e697
4 changed files with 19 additions and 10 deletions

View File

@@ -72,12 +72,14 @@ Popup:
size_hint: 1, None
height: '48dp'
text: 'Max'
on_release: a.amount = app.get_max_amount()
on_release:
a.is_fiat = False
a.amount = app.get_max_amount()
Button:
id: button_fiat
size_hint: 1, None
height: '48dp'
text: '/'
text: app.fiat_unit if a.is_fiat else app.base_unit
on_release:
app.toggle_fiat(a)
Button: