mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-18 06:18:58 +02:00
[frontend] Fix build issues with update checker (#3433)
Signed-off-by: crueter <crueter@eden-emu.dev> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3433
This commit is contained in:
parent
638663b28e
commit
84fdbbaaa1
2 changed files with 2 additions and 3 deletions
|
|
@ -4030,7 +4030,7 @@ void MainWindow::OnEmulatorUpdateAvailable() {
|
|||
update_prompt.addButton(QMessageBox::Yes);
|
||||
update_prompt.addButton(QMessageBox::Ignore);
|
||||
update_prompt.setText(
|
||||
tr("Download %1?").arg(version.name));
|
||||
tr("Download %1?").arg(QString::fromStdString(version.name)));
|
||||
update_prompt.exec();
|
||||
if (update_prompt.button(QMessageBox::Yes) == update_prompt.clickedButton()) {
|
||||
auto const full_url = fmt::format("{}/{}/releases/tag/",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue