#978 Class names are case sensitive, but filenames are not, so they are overwritten sometimes during export

This commit is contained in:
honfika@gmail.com
2015-07-17 10:37:04 +02:00
parent 0b69a9e75c
commit 684af502a6
5 changed files with 37 additions and 13 deletions

View File

@@ -1244,7 +1244,8 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
}
Main.startWork(translate("work.exporting") + " " + (i + 1) + "/" + as3scripts.size() + " " + tls.getPath() + " ...", null);
ret.add(tls.export(scriptsFolder, scriptExportSettings, parallel));
File file = tls.getExportFile(scriptsFolder, scriptExportSettings);
ret.add(tls.export(file, scriptExportSettings, parallel));
}
}
} else {