Files
pallectrum/electrum/gui/qml/components/wizard/WCServerConfig.qml
2023-11-07 10:17:08 +01:00

28 lines
511 B
QML

import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import "../controls"
WizardComponent {
valid: true
last: true
function apply() {
wizard_data['autoconnect'] = false
wizard_data['server'] = sc.address
}
ColumnLayout {
anchors.fill: parent
spacing: constants.paddingLarge
ServerConfig {
id: sc
showAutoselectServer: false
Layout.fillWidth: true
Layout.fillHeight: true
}
}
}