mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
GUI: Disable coin control (non-functional)
This commit is contained in:
parent
82dfd3ff1a
commit
20bf9c5cde
2 changed files with 3 additions and 1 deletions
|
|
@ -33,6 +33,8 @@ OptionsDialog::OptionsDialog(QWidget *parent, bool enableWallet) :
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
|
ui->coinControlFeatures->setEnabled(false);
|
||||||
|
|
||||||
/* Main elements init */
|
/* Main elements init */
|
||||||
ui->databaseCache->setMinimum(nMinDbCache);
|
ui->databaseCache->setMinimum(nMinDbCache);
|
||||||
ui->databaseCache->setMaximum(nMaxDbCache);
|
ui->databaseCache->setMaximum(nMaxDbCache);
|
||||||
|
|
|
||||||
|
|
@ -77,7 +77,7 @@ void OptionsModel::Init(bool resetSettings)
|
||||||
|
|
||||||
if (!settings.contains("fCoinControlFeatures"))
|
if (!settings.contains("fCoinControlFeatures"))
|
||||||
settings.setValue("fCoinControlFeatures", false);
|
settings.setValue("fCoinControlFeatures", false);
|
||||||
fCoinControlFeatures = settings.value("fCoinControlFeatures", false).toBool();
|
fCoinControlFeatures = false;
|
||||||
|
|
||||||
// These are shared with the core or have a command-line parameter
|
// These are shared with the core or have a command-line parameter
|
||||||
// and we want command-line parameters to overwrite the GUI settings.
|
// and we want command-line parameters to overwrite the GUI settings.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue