mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-03 13:44:42 -05:00
[gui] create wallet: smarter checkbox toggling
This commit is contained in:
parent
42b66a6b81
commit
5bff82540b
2 changed files with 24 additions and 7 deletions
|
@ -35,11 +35,28 @@ CreateWalletDialog::CreateWalletDialog(QWidget* parent) :
|
|||
}
|
||||
});
|
||||
|
||||
#ifndef USE_SQLITE
|
||||
ui->descriptor_checkbox->setToolTip(tr("Compiled without sqlite support (required for descriptor wallets)"));
|
||||
ui->descriptor_checkbox->setEnabled(false);
|
||||
ui->descriptor_checkbox->setChecked(false);
|
||||
#endif
|
||||
connect(ui->disable_privkeys_checkbox, &QCheckBox::toggled, [this](bool checked) {
|
||||
// Disable the encrypt_wallet_checkbox when isDisablePrivateKeysChecked is
|
||||
// set to true, enable it when isDisablePrivateKeysChecked is false.
|
||||
ui->encrypt_wallet_checkbox->setEnabled(!checked);
|
||||
|
||||
// Wallets without private keys start out blank
|
||||
if (checked) {
|
||||
ui->blank_wallet_checkbox->setChecked(true);
|
||||
}
|
||||
|
||||
// When the encrypt_wallet_checkbox is disabled, uncheck it.
|
||||
if (!ui->encrypt_wallet_checkbox->isEnabled()) {
|
||||
ui->encrypt_wallet_checkbox->setChecked(false);
|
||||
}
|
||||
});
|
||||
|
||||
#ifndef USE_SQLITE
|
||||
ui->descriptor_checkbox->setToolTip(tr("Compiled without sqlite support (required for descriptor wallets)"));
|
||||
ui->descriptor_checkbox->setEnabled(false);
|
||||
ui->descriptor_checkbox->setChecked(false);
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
CreateWalletDialog::~CreateWalletDialog()
|
||||
|
|
|
@ -68,12 +68,12 @@
|
|||
<string>Encrypt Wallet</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QCheckBox" name="disable_privkeys_checkbox">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
|
|
Loading…
Add table
Reference in a new issue