Qt: Fix ugly popup message on Mac in setup wizard

This commit is contained in:
Stenzek 2024-05-17 14:21:57 +10:00
parent 1c098f625e
commit c03f1cfeb8
No known key found for this signature in database
1 changed files with 2 additions and 3 deletions

View File

@ -44,9 +44,8 @@ bool SetupWizardDialog::canShowNextPage()
{ {
if (QMessageBox::question( if (QMessageBox::question(
this, tr("Warning"), this, tr("Warning"),
tr("No BIOS images were found. DuckStation <strong>will not</strong> be able to run games without a " tr("No BIOS images were found. DuckStation WILL NOT be able to run games without a BIOS image.\n\nAre "
"BIOS image.<br><br>Are you sure you wish to continue without selecting a BIOS image?")) != "you sure you wish to continue without selecting a BIOS image?")) != QMessageBox::Yes)
QMessageBox::Yes)
{ {
return false; return false;
} }