QFileDialog: differentiate between recording export/play

Previously, the file dialog window was ambiguous between saving or loading a .dtm. This commit simply gives a bit more context to differentiate the two windows.
This commit is contained in:
sowens99 2021-09-26 20:31:38 -04:00
parent a963829ab6
commit 51cd92a04c

View File

@ -1658,8 +1658,8 @@ void MainWindow::OnImportNANDBackup()
void MainWindow::OnPlayRecording() void MainWindow::OnPlayRecording()
{ {
QString dtm_file = QFileDialog::getOpenFileName(this, tr("Select the Recording File"), QString(), QString dtm_file = QFileDialog::getOpenFileName(this, tr("Select the Recording File to Play"),
tr("Dolphin TAS Movies (*.dtm)")); QString(), tr("Dolphin TAS Movies (*.dtm)"));
if (dtm_file.isEmpty()) if (dtm_file.isEmpty())
return; return;
@ -1728,8 +1728,8 @@ void MainWindow::OnStopRecording()
void MainWindow::OnExportRecording() void MainWindow::OnExportRecording()
{ {
Core::RunAsCPUThread([this] { Core::RunAsCPUThread([this] {
QString dtm_file = QFileDialog::getSaveFileName(this, tr("Select the Recording File"), QString dtm_file = QFileDialog::getSaveFileName(this, tr("Save Recording File As"), QString(),
QString(), tr("Dolphin TAS Movies (*.dtm)")); tr("Dolphin TAS Movies (*.dtm)"));
if (!dtm_file.isEmpty()) if (!dtm_file.isEmpty())
Movie::SaveRecording(dtm_file.toStdString()); Movie::SaveRecording(dtm_file.toStdString());
}); });