diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-03 17:13:07 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-03 17:17:10 +0200 |
commit | 65ae1ac4e593c08c0a0cf255fd05a004c600fbbe (patch) | |
tree | 97305444ddba9b25a9001b4310f3cd5b59fcc8bd | |
parent | yuzu/applets/profile_select: Use QDialogButtonBox standard buttons instead of custom buttons (diff) | |
download | yuzu-65ae1ac4e593c08c0a0cf255fd05a004c600fbbe.tar yuzu-65ae1ac4e593c08c0a0cf255fd05a004c600fbbe.tar.gz yuzu-65ae1ac4e593c08c0a0cf255fd05a004c600fbbe.tar.bz2 yuzu-65ae1ac4e593c08c0a0cf255fd05a004c600fbbe.tar.lz yuzu-65ae1ac4e593c08c0a0cf255fd05a004c600fbbe.tar.xz yuzu-65ae1ac4e593c08c0a0cf255fd05a004c600fbbe.tar.zst yuzu-65ae1ac4e593c08c0a0cf255fd05a004c600fbbe.zip |
-rw-r--r-- | src/yuzu/applets/software_keyboard.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/yuzu/applets/software_keyboard.cpp b/src/yuzu/applets/software_keyboard.cpp index eddc9c941..f3eb29b25 100644 --- a/src/yuzu/applets/software_keyboard.cpp +++ b/src/yuzu/applets/software_keyboard.cpp @@ -75,13 +75,13 @@ QtSoftwareKeyboardDialog::QtSoftwareKeyboardDialog( length_label->setText(QStringLiteral("%1/%2").arg(text.size()).arg(parameters.max_length)); }); - buttons = new QDialogButtonBox; - buttons->addButton(tr("Cancel"), QDialogButtonBox::RejectRole); - buttons->addButton(parameters.submit_text.empty() - ? tr("OK") - : QString::fromStdU16String(parameters.submit_text), - QDialogButtonBox::AcceptRole); - + buttons = new QDialogButtonBox(QDialogButtonBox::Cancel); + if (parameters.submit_text.empty()) { + buttons->addButton(QDialogButtonBox::Ok); + } else { + buttons->addButton(QString::fromStdU16String(parameters.submit_text), + QDialogButtonBox::AcceptRole); + } connect(buttons, &QDialogButtonBox::accepted, this, &QtSoftwareKeyboardDialog::accept); connect(buttons, &QDialogButtonBox::rejected, this, &QtSoftwareKeyboardDialog::reject); layout->addWidget(header_label); |