From 5fd6d2af4b902022f545b7324de38eee23acf018 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Tue, 28 Mar 2023 14:44:21 +0000 Subject: [PATCH] qml: flip and fix auto_connect in ServerConnectWizard --- electrum/gui/qml/components/wizard/WCServerConfig.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qml/components/wizard/WCServerConfig.qml b/electrum/gui/qml/components/wizard/WCServerConfig.qml index d5d1bbef8..3788386bc 100644 --- a/electrum/gui/qml/components/wizard/WCServerConfig.qml +++ b/electrum/gui/qml/components/wizard/WCServerConfig.qml @@ -9,7 +9,7 @@ WizardComponent { last: true function apply() { - wizard_data['autoconnect'] = !sc.auto_connect + wizard_data['autoconnect'] = sc.auto_connect wizard_data['server'] = sc.address }