mirror of
https://github.com/Dark98/threeSD.git
synced 2026-07-02 16:49:04 +00:00
Minor improvement to UX
This commit is contained in:
@@ -28,16 +28,17 @@ SelectNandDialog::SelectNandDialog(QWidget* parent,
|
|||||||
}
|
}
|
||||||
|
|
||||||
QRadioButton* button = new QRadioButton(display_name);
|
QRadioButton* button = new QRadioButton(display_name);
|
||||||
|
if (i == 0) { // Select one by default
|
||||||
|
button->setChecked(true);
|
||||||
|
}
|
||||||
connect(button, &QRadioButton::toggled, this, [this, i](bool checked) {
|
connect(button, &QRadioButton::toggled, this, [this, i](bool checked) {
|
||||||
if (checked) {
|
if (checked) {
|
||||||
ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
|
|
||||||
result = i;
|
result = i;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
ui->contentLayout->addWidget(button);
|
ui->contentLayout->addWidget(button);
|
||||||
}
|
}
|
||||||
|
|
||||||
ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
|
|
||||||
connect(ui->buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept);
|
connect(ui->buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept);
|
||||||
connect(ui->buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
connect(ui->buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,5 +23,5 @@ private:
|
|||||||
std::unique_ptr<Ui::SelectNandDialog> ui;
|
std::unique_ptr<Ui::SelectNandDialog> ui;
|
||||||
|
|
||||||
const std::vector<Core::Config::NandConfig>& nands;
|
const std::vector<Core::Config::NandConfig>& nands;
|
||||||
int result = -1;
|
int result = 0;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user