wallet selector

This commit is contained in:
ThomasV 2015-10-07 13:48:58 +02:00
parent f8ccf3cd37
commit c803a8ecab
1 changed files with 20 additions and 2 deletions

View File

@ -1,3 +1,4 @@
#:import os os
<WalletSelector@BlueSpinner>
@ -7,8 +8,25 @@
Popup:
Label:
text: _('Wallet')
BoxLayout:
orientation: 'vertical'
GridLayout:
size_hint_y: None
cols: 2
Label:
height: '32dp'
size_hint_y: None
text: _('Wallet file') + ':'
TextInput:
id: text_input
height: '32dp'
size_hint_y: None
text: os.path.basename(app.wallet.storage.path)
FileChooserIconView:
id: wallet_selector
path: os.path.dirname(app.wallet.storage.path)
on_selection: text_input.text = os.path.basename(self.selection[0]) if self.selection else ''
#WalletSelector:
# id: wallet_selection