127 | @@ -128,7 +128,10 @@ SendCoinsDialog::SendCoinsDialog(const PlatformStyle *_platformStyle, QWidget *p
128 | ui->groupFee->setId(ui->radioCustomFee, 1);
129 | ui->groupFee->button((int)std::max(0, std::min(1, settings.value("nFeeRadio").toInt())))->setChecked(true);
130 | ui->groupCustomFee->setId(ui->radioCustomPerKilobyte, 0);
131 | - ui->groupCustomFee->button((int)std::max(0, std::min(1, settings.value("nCustomFeeRadio").toInt())))->setChecked(true);
132 | + QAbstractButton *groupCustomFee = ui->groupCustomFee->button((int)std::max(0, std::min(1, settings.value("nCustomFeeRadio").toInt())));
groupCustomFee might not be the best name for this variable, after all it's a button not a group (also snake_case?)