From 915e34112b5a4c2ef391d7e3706603bcd6f62a2a Mon Sep 17 00:00:00 2001 From: Jarol Rodriguez Date: Tue, 9 Mar 2021 19:32:51 -0500 Subject: [PATCH] qt: fix issue when disabling the auto-enabled blank wallet checkbox This commit makes it so that when the `Blank Wallet` checkbox is auto-selected after the user selects 'Disable Private' keys, unselecting it will also unselect the 'Disable Private Keys' checkbox, which in turn re-enables the 'Encrypt Wallet' checkbox. --- src/qt/createwalletdialog.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/qt/createwalletdialog.cpp b/src/qt/createwalletdialog.cpp index 14678015228..113bd30a0c1 100644 --- a/src/qt/createwalletdialog.cpp +++ b/src/qt/createwalletdialog.cpp @@ -53,6 +53,12 @@ CreateWalletDialog::CreateWalletDialog(QWidget* parent) : } }); + connect(ui->blank_wallet_checkbox, &QCheckBox::toggled, [this](bool checked) { + if (!checked) { + ui->disable_privkeys_checkbox->setChecked(false); + } + }); + #ifndef USE_SQLITE ui->descriptor_checkbox->setToolTip(tr("Compiled without sqlite support (required for descriptor wallets)")); ui->descriptor_checkbox->setEnabled(false);