Skip to content
Snippets Groups Projects
Commit a504bad3 authored by Lioncash's avatar Lioncash
Browse files

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.
parent e796351a
No related branches found
No related tags found
No related merge requests found
......@@ -58,10 +58,7 @@ QtProfileSelectionDialog::QtProfileSelectionDialog(QWidget* parent)
scroll_area = new QScrollArea;
buttons = new QDialogButtonBox;
buttons->addButton(tr("Cancel"), QDialogButtonBox::RejectRole);
buttons->addButton(tr("OK"), QDialogButtonBox::AcceptRole);
buttons = new QDialogButtonBox(QDialogButtonBox::Cancel | QDialogButtonBox::Ok);
connect(buttons, &QDialogButtonBox::accepted, this, &QtProfileSelectionDialog::accept);
connect(buttons, &QDialogButtonBox::rejected, this, &QtProfileSelectionDialog::reject);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment