mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 12:30:07 +00:00
kivy tx_dialog: fix size of buttons in "Options" dropdown
This commit is contained in:
parent
fbcf6f48b9
commit
0ec574bcf8
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ class TxDialog(Factory.Popup):
|
|||
self._action_button_fn = dropdown.open
|
||||
for option in options:
|
||||
if option.enabled:
|
||||
btn = Button(text=option.text, size_hint_y=None, height=48)
|
||||
btn = Button(text=option.text, size_hint_y=None, height='48dp')
|
||||
btn.bind(on_release=option.func)
|
||||
dropdown.add_widget(btn)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue