electrum-bitcoinprivate/gui/kivy/uix/ui_screens/network.kv

40 lines
983 B
Plaintext
Raw Normal View History

Popup:
2015-10-07 01:13:40 -07:00
id: nd
title: _('Network')
2015-10-07 01:13:40 -07:00
on_open:
host.text, nd.port, nd.protocol, nd.proxy, auto_connect.active = app.network.get_parameters()
BoxLayout:
2015-10-13 03:12:49 -07:00
2015-10-07 01:13:40 -07:00
orientation: 'vertical'
GridLayout:
cols: 2
Label:
text: _('Auto-connect')
CheckBox:
id: auto_connect
size_hint_y: None
Label:
text: _('Server')
Spinner:
2015-10-07 01:13:40 -07:00
id: host
text: ''
values: app.network.get_servers()
2015-12-02 03:11:28 -08:00
Widget:
size_hint: 1, 1
BoxLayout:
2015-12-02 03:11:28 -08:00
Widget:
size_hint: 0.5, None
Button:
size_hint: 0.5, None
height: '48dp'
text: _('OK')
on_release:
app.network.set_parameters(host.text, nd.port, nd.protocol, nd.proxy, auto_connect.active)
nd.dismiss()
2015-10-14 09:45:26 -07:00