add slashes to output path

This commit is contained in:
Wirlaburla 2024-07-18 20:11:10 -05:00
parent 55df70130c
commit cbd9c75f81
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ public class Kermit implements ActionListener {
changePage(Pages.IMPORT_LOCATION);
break;
case IMPORT_LOCATION:
Main.outpath = pathInput.getText();
Main.outpath = pathInput.getText()+"/";
pathInput.setText("");
dialogText.setVisible(false);frame.remove(dialogText);
pathInput.setVisible(false);frame.remove(pathInput);

View File

@ -95,7 +95,7 @@ public class Waldorf implements ActionListener {
frame.dispose();
} else
if (actionEvent.getSource() == okbtn) {
Main.outpath = tOutPath;
Main.outpath = tOutPath+"/";
Main.checkUpdates = checkUpdatesToggle.isSelected();
Main.writeConf();
Main.loadConf();