From 16d281ba8411eda112777a2636ad499709324fa3 Mon Sep 17 00:00:00 2001 From: Cozz Lovan Date: Mon, 17 Mar 2014 14:04:56 +0100 Subject: [Qt] add expert section to wallet tab in optionsdialog --- src/qt/forms/optionsdialog.ui | 59 +++++++++++++++++++++---------------------- src/qt/optionsdialog.cpp | 2 +- 2 files changed, 30 insertions(+), 31 deletions(-) (limited to 'src/qt') diff --git a/src/qt/forms/optionsdialog.ui b/src/qt/forms/optionsdialog.ui index a555f13c2a..36b070f1c8 100644 --- a/src/qt/forms/optionsdialog.ui +++ b/src/qt/forms/optionsdialog.ui @@ -189,26 +189,6 @@ - - - - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - - - Qt::PlainText - - - true - - - - - - - &Spend unconfirmed change (experts only) - - - @@ -222,6 +202,35 @@ + + + + Expert + + + + + + Whether to show coin control features or not. + + + Enable coin &control features + + + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + &Spend unconfirmed change + + + + + + @@ -468,16 +477,6 @@ - - - - Whether to show coin control features or not. - - - Display coin &control features (experts only) - - - diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index e31542961c..9f7c484946 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -159,6 +159,7 @@ void OptionsDialog::setMapper() /* Wallet */ mapper->addMapping(ui->transactionFee, OptionsModel::Fee); mapper->addMapping(ui->spendZeroConfChange, OptionsModel::SpendZeroConfChange); + mapper->addMapping(ui->coinControlFeatures, OptionsModel::CoinControlFeatures); /* Network */ mapper->addMapping(ui->mapPortUpnp, OptionsModel::MapPortUPnP); @@ -178,7 +179,6 @@ void OptionsDialog::setMapper() mapper->addMapping(ui->lang, OptionsModel::Language); mapper->addMapping(ui->unit, OptionsModel::DisplayUnit); mapper->addMapping(ui->displayAddresses, OptionsModel::DisplayAddresses); - mapper->addMapping(ui->coinControlFeatures, OptionsModel::CoinControlFeatures); } void OptionsDialog::enableOkButton() -- cgit v1.2.3