Files
pallectrum/electrum/gui/qml/components/wizard/WCServerConfig.qml
2023-03-28 14:44:21 +00:00

31 lines
559 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
}
}
}