electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 0ec574bcf8b9d58462efee700df96a744a753435
parent fbcf6f48b91ec90d7997c13553daeecaaa17b72c
Author: SomberNight <somber.night@protonmail.com>
Date:   Tue,  4 Jun 2019 21:00:48 +0200

kivy tx_dialog: fix size of buttons in "Options" dropdown

Diffstat:
Melectrum/gui/kivy/uix/dialogs/tx_dialog.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/electrum/gui/kivy/uix/dialogs/tx_dialog.py b/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)