mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Qt/FIFOPlayerWindow: Make message box modal
This commit is contained in:
@ -204,7 +204,12 @@ void FIFOPlayerWindow::SaveRecording()
|
|||||||
bool result = file->Save(path.toStdString());
|
bool result = file->Save(path.toStdString());
|
||||||
|
|
||||||
if (!result)
|
if (!result)
|
||||||
QMessageBox::critical(this, tr("Error"), tr("Failed to save FIFO log."));
|
{
|
||||||
|
QMessageBox msg(QMessageBox::Critical, tr("Error"), tr("Failed to save FIFO log."),
|
||||||
|
QMessageBox::Ok, this);
|
||||||
|
msg.setWindowModality(Qt::WindowModal);
|
||||||
|
msg.exec();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void FIFOPlayerWindow::StartRecording()
|
void FIFOPlayerWindow::StartRecording()
|
||||||
|
Reference in New Issue
Block a user