yuzu/applets/profile_select: Use QDialogButtonBox standard buttons instead of custom buttons
Makes for shorter code, while also not requiring the buttons to be directly translated, they'll be handled by Qt itself.
This commit is contained in:
parent
381b30a8b8
commit
e49a08ff6b
1 changed files with 1 additions and 4 deletions
|
@ -58,10 +58,7 @@ QtProfileSelectionDialog::QtProfileSelectionDialog(QWidget* parent)
|
||||||
|
|
||||||
scroll_area = new QScrollArea;
|
scroll_area = new QScrollArea;
|
||||||
|
|
||||||
buttons = new QDialogButtonBox;
|
buttons = new QDialogButtonBox(QDialogButtonBox::Cancel | QDialogButtonBox::Ok);
|
||||||
buttons->addButton(tr("Cancel"), QDialogButtonBox::RejectRole);
|
|
||||||
buttons->addButton(tr("OK"), QDialogButtonBox::AcceptRole);
|
|
||||||
|
|
||||||
connect(buttons, &QDialogButtonBox::accepted, this, &QtProfileSelectionDialog::accept);
|
connect(buttons, &QDialogButtonBox::accepted, this, &QtProfileSelectionDialog::accept);
|
||||||
connect(buttons, &QDialogButtonBox::rejected, this, &QtProfileSelectionDialog::reject);
|
connect(buttons, &QDialogButtonBox::rejected, this, &QtProfileSelectionDialog::reject);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue