diff --git a/src/qt/forms/optionsdialog.ui b/src/qt/forms/optionsdialog.ui
index a555f13c2..36b070f1c 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 e31542961..9f7c48494 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()