Skip to content

Commit

Permalink
Merge pull request #786 from tandersn/master
Browse files Browse the repository at this point in the history
adding source tbc filename to output png suggested filename
  • Loading branch information
happycube authored Aug 28, 2022
2 parents 471177e + d80311e commit a48b222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ld-analyse/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ void MainWindow::on_actionSave_frame_as_PNG_triggered()
else filenameSuggestion += tr("ar43_");
}

filenameSuggestion += QString::number(currentFrameNumber) + tr(".png");
filenameSuggestion += QString::number(currentFrameNumber) + "_" + tbcSource.getCurrentSourceFilename().split("/").last() + tr(".png");

QString pngFilename = QFileDialog::getSaveFileName(this,
tr("Save PNG file"),
Expand Down

0 comments on commit a48b222

Please sign in to comment.