Skip to content

Commit

Permalink
Qt: Fix ugly popup message on Mac in setup wizard
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed May 17, 2024
1 parent 1c098f6 commit c03f1cf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/duckstation-qt/setupwizarddialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,8 @@ bool SetupWizardDialog::canShowNextPage()
{
if (QMessageBox::question(
this, tr("Warning"),
tr("No BIOS images were found. DuckStation <strong>will not</strong> be able to run games without a "
"BIOS image.<br><br>Are you sure you wish to continue without selecting a BIOS image?")) !=
QMessageBox::Yes)
tr("No BIOS images were found. DuckStation WILL NOT be able to run games without a BIOS image.\n\nAre "
"you sure you wish to continue without selecting a BIOS image?")) != QMessageBox::Yes)
{
return false;
}
Expand Down

0 comments on commit c03f1cf

Please sign in to comment.