Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pdf extension to files selected without one #1653

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion megameklab/src/megameklab/util/UnitPrintManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import megameklab.printing.*;
import megameklab.ui.dialog.MegaMekLabUnitSelectorDialog;
import megameklab.ui.dialog.PrintQueueDialog;
import org.apache.commons.io.FilenameUtils;

import static megamek.common.options.OptionsConstants.RPG_MANEI_DOMINI;
import static megamek.common.options.OptionsConstants.RPG_PILOT_ADVANTAGES;
Expand Down Expand Up @@ -119,7 +120,14 @@ public static File getExportFile(Frame parent, String suggestedFileName) {
// I want a file, y'know!
return null;
}
return f.getSelectedFile();

var file = f.getSelectedFile();

if (FilenameUtils.getExtension(file.getName()).isEmpty()) {
file = new File(file.getAbsolutePath() + ".pdf");
}

return file;
}

public static List<PrintRecordSheet> createSheets(List<? extends BTObject> entities, boolean singlePrint,
Expand Down