-WIP-electrum-btcp/gui/kivy/uix/ui_screens/network.kv

32 lines
749 B
Plaintext

Popup:
id: nd
title: _('Network')
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:
orientation: 'vertical'
GridLayout:
cols: 2
Label:
text: _('Auto-connect')
CheckBox:
id: auto_connect
size_hint_y: None
Label:
text: _('Server')
Label:
id: host
Button:
size_hint_y: None
height: '48dp'
text: _('Close')
on_release: nd.dismiss()