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

View file

@ -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;
}