#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

@@ -1274,7 +1274,8 @@ public final class SWF implements SWFContainerItem, Timelined {
}
String eventData = cnt + scr.getPath() + " ...";
evl.handleExportingEvent("tag", i + 1, abcList.size(), eventData);
scr.export(outdir, exportSettings, parallel);
File file = scr.getExportFile(outdir, exportSettings);
scr.export(file, exportSettings, parallel);
evl.handleExportedEvent("tag", i + 1, abcList.size(), eventData);
exported = true;
}