1
0
Files
electrum/electrum/gui/qml/components/wizard/WCProxyConfig.qml
Sander van Grieken a03b2d7bae qt,qml: add a welcome page as initial page for server connect wizard
This is much less intimidating than asking if the user wants to use a proxy
out of the gate.
2023-12-19 18:49:16 +01:00

26 lines
437 B
QML

import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import "../controls"
WizardComponent {
valid: true
title: qsTr('Proxy')
function apply() {
wizard_data['proxy'] = pc.toProxyDict()
}
ColumnLayout {
width: parent.width
spacing: constants.paddingLarge
ProxyConfig {
id: pc
Layout.fillWidth: true
proxy_enabled: true
}
}
}