electrum

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

commit b1f9f7faed20fa8ee3952f331334e004f492e64c
parent 702924a07efe142fac5cbfe443dcf549b72f2cf3
Author: ThomasV <thomasv@electrum.org>
Date:   Tue, 19 Jan 2016 16:11:23 +0100

kivy: fix wallet selection dialog

Diffstat:
Mgui/kivy/uix/dialogs/wallets.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui/kivy/uix/dialogs/wallets.py b/gui/kivy/uix/dialogs/wallets.py @@ -50,8 +50,8 @@ class WalletDialog(Factory.Popup): def cb(text): if text: app.load_wallet_by_name(os.path.join(dirname, text)) - if self.path: - app.load_wallet_by_name(self.path) + if self.ids.wallet_selector.selection: + app.load_wallet_by_name(self.ids.wallet_selector.selection[0]) else: d = LabelDialog(_('Enter wallet name'), '', cb) d.open()