Make "No ROMs found" message identical to Win32

This commit is contained in:
Cacodemon345
2021-12-10 15:36:55 +06:00
parent ba2dbe724f
commit 7d6e46d90a
3 changed files with 5 additions and 2 deletions

View File

@@ -864,6 +864,7 @@ void MainWindow::showMessage(const QString& header, const QString& message) {
void MainWindow::showMessage_(const QString &header, const QString &message) {
QMessageBox box(QMessageBox::Warning, header, message, QMessageBox::NoButton, this);
box.setTextFormat(Qt::TextFormat::RichText);
box.exec();
}