1
0
Files
electrum/electrum/gui/qml/components/wizard/WCServerConfig.qml

31 lines
560 B
QML

import QtQuick 2.6
import QtQuick.Layouts 1.0
import QtQuick.Controls 2.1
import "../controls"
WizardComponent {
valid: true
last: true
function apply() {
wizard_data['autoconnect'] = !sc.auto_connect
wizard_data['server'] = sc.address
}
ColumnLayout {
anchors.fill: parent
spacing: constants.paddingLarge
Label {
text: qsTr('Server settings')
}
ServerConfig {
id: sc
width: parent.width
Layout.fillHeight: true
}
}
}