From adaafeaae17a64f4aa951d183d9a7c3f44348709 Mon Sep 17 00:00:00 2001 From: f321x Date: Tue, 13 May 2025 11:13:01 +0200 Subject: [PATCH] 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. --- electrum/gui/qml/components/wizard/WCProxyConfig.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qml/components/wizard/WCProxyConfig.qml b/electrum/gui/qml/components/wizard/WCProxyConfig.qml index ffaef38fd..ac2cc3e81 100644 --- a/electrum/gui/qml/components/wizard/WCProxyConfig.qml +++ b/electrum/gui/qml/components/wizard/WCProxyConfig.qml @@ -19,7 +19,7 @@ WizardComponent { ProxyConfig { id: pc Layout.fillWidth: true - proxy_enabled: true + proxy_enabled: false } } }