default to splits directory if we have no existing open file dir to use
This commit is contained in:
parent
0fd299cf44
commit
464f4a400e
|
@ -246,6 +246,9 @@ final class Actions {
|
|||
private File selectFile(FILE_CHOOSER_TYPE dialogType) {
|
||||
int action = -1;
|
||||
|
||||
if (this.file == null)
|
||||
fileChooser.setCurrentDirectory(new File(UserSettings.getSplitsPath()));
|
||||
else
|
||||
fileChooser.setCurrentDirectory(this.file);
|
||||
|
||||
if (dialogType == FILE_CHOOSER_TYPE.OPEN)
|
||||
|
|
Reference in a new issue