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);
|
changePage(Pages.IMPORT_LOCATION);
|
||||||
break;
|
break;
|
||||||
case IMPORT_LOCATION:
|
case IMPORT_LOCATION:
|
||||||
Main.outpath = pathInput.getText();
|
Main.outpath = pathInput.getText()+"/";
|
||||||
pathInput.setText("");
|
pathInput.setText("");
|
||||||
dialogText.setVisible(false);frame.remove(dialogText);
|
dialogText.setVisible(false);frame.remove(dialogText);
|
||||||
pathInput.setVisible(false);frame.remove(pathInput);
|
pathInput.setVisible(false);frame.remove(pathInput);
|
||||||
|
|
|
@ -95,7 +95,7 @@ public class Waldorf implements ActionListener {
|
||||||
frame.dispose();
|
frame.dispose();
|
||||||
} else
|
} else
|
||||||
if (actionEvent.getSource() == okbtn) {
|
if (actionEvent.getSource() == okbtn) {
|
||||||
Main.outpath = tOutPath;
|
Main.outpath = tOutPath+"/";
|
||||||
Main.checkUpdates = checkUpdatesToggle.isSelected();
|
Main.checkUpdates = checkUpdatesToggle.isSelected();
|
||||||
Main.writeConf();
|
Main.writeConf();
|
||||||
Main.loadConf();
|
Main.loadConf();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user