tkivy tx_dialog: fix size of buttons in "Options" dropdown - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 0ec574bcf8b9d58462efee700df96a744a753435
DIR parent fbcf6f48b91ec90d7997c13553daeecaaa17b72c
HTML 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:
M electrum/gui/kivy/uix/dialogs/tx_d… | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/electrum/gui/kivy/uix/dialogs/tx_dialog.py b/electrum/gui/kivy/uix/dialogs/tx_dialog.py
t@@ -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)