GUI: Disable coin control (non-functional)

This commit is contained in:
Luke Dashjr 2019-01-08 17:31:34 +00:00 committed by Gregory Sanders
parent 82dfd3ff1a
commit 20bf9c5cde
2 changed files with 3 additions and 1 deletions

View file

@ -33,6 +33,8 @@ OptionsDialog::OptionsDialog(QWidget *parent, bool enableWallet) :
{
ui->setupUi(this);
ui->coinControlFeatures->setEnabled(false);
/* Main elements init */
ui->databaseCache->setMinimum(nMinDbCache);
ui->databaseCache->setMaximum(nMaxDbCache);

View file

@ -77,7 +77,7 @@ void OptionsModel::Init(bool resetSettings)
if (!settings.contains("fCoinControlFeatures"))
settings.setValue("fCoinControlFeatures", false);
fCoinControlFeatures = settings.value("fCoinControlFeatures", false).toBool();
fCoinControlFeatures = false;
// These are shared with the core or have a command-line parameter
// and we want command-line parameters to overwrite the GUI settings.