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

35 lines
797 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()
on_dismiss:
app.network.set_parameters(host.text, nd.port, nd.protocol, nd.proxy, auto_connect.active)
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')
Label:
id: host
Button:
2015-10-14 09:45:26 -07:00
size_hint: 0.5, None
height: '48dp'
2015-10-07 01:13:40 -07:00
text: _('Close')
on_release: nd.dismiss()
2015-10-14 09:45:26 -07:00
Widget:
size_hint: 1, 1