1
0
Files
electrum/electrum/gui/qml/components/wizard/WCProxyConfig.qml
f321x adaafeaae1 disable proxy checkbox in ProxyConfig by default
disable the checkbox by default, so that if a user selects Enable Proxy
in the advanced network settings, and then just clicks next with the proxy
checkbox set, doesn't end up with a invalid proxy configuration which
doesn't connect to the server and has to be fixed manually.
2025-05-13 14:28:22 +02:00

26 lines
438 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: false
}
}
}