Browse Source
kivy tx_dialog: fix size of buttons in "Options" dropdown
dependabot/pip/contrib/deterministic-build/ecdsa-0.13.3
SomberNight
6 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
electrum/gui/kivy/uix/dialogs/tx_dialog.py
|
|
@ -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) |
|
|
|
|
|
|
|