Merge pull request #10129 from malleoz/recording-save-playback-window
QFileDialog: differentiate between recording open/save
This commit is contained in:
commit
bb367394cf
|
@ -1658,8 +1658,8 @@ void MainWindow::OnImportNANDBackup()
|
|||
|
||||
void MainWindow::OnPlayRecording()
|
||||
{
|
||||
QString dtm_file = QFileDialog::getOpenFileName(this, tr("Select the Recording File"), QString(),
|
||||
tr("Dolphin TAS Movies (*.dtm)"));
|
||||
QString dtm_file = QFileDialog::getOpenFileName(this, tr("Select the Recording File to Play"),
|
||||
QString(), tr("Dolphin TAS Movies (*.dtm)"));
|
||||
|
||||
if (dtm_file.isEmpty())
|
||||
return;
|
||||
|
@ -1728,8 +1728,8 @@ void MainWindow::OnStopRecording()
|
|||
void MainWindow::OnExportRecording()
|
||||
{
|
||||
Core::RunAsCPUThread([this] {
|
||||
QString dtm_file = QFileDialog::getSaveFileName(this, tr("Select the Recording File"),
|
||||
QString(), tr("Dolphin TAS Movies (*.dtm)"));
|
||||
QString dtm_file = QFileDialog::getSaveFileName(this, tr("Save Recording File As"), QString(),
|
||||
tr("Dolphin TAS Movies (*.dtm)"));
|
||||
if (!dtm_file.isEmpty())
|
||||
Movie::SaveRecording(dtm_file.toStdString());
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue