add slashes to output path
This commit is contained in:
parent
55df70130c
commit
cbd9c75f81
|
@ -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);
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue
Block a user