xfl converter is not static anymore (solves the problem with randomly assigned colors, now they are comparable, and should be the same in every export)

This commit is contained in:
honfika@gmail.com
2016-03-08 13:50:50 +01:00
parent 3528f1d8b5
commit 406ada8f1e
2 changed files with 9 additions and 12 deletions

View File

@@ -2437,7 +2437,7 @@ public final class SWF implements SWFContainerItem, Timelined {
}
public void exportXfl(AbortRetryIgnoreHandler handler, String outfile, String swfName, String generator, String generatorVerName, String generatorVersion, boolean parallel, FLAVersion version, XFLExportSettings settings) throws IOException, InterruptedException {
XFLConverter.convertSWF(handler, this, swfName, outfile, settings, generator, generatorVerName, generatorVersion, parallel, version);
new XFLConverter().convertSWF(handler, this, swfName, outfile, settings, generator, generatorVerName, generatorVersion, parallel, version);
clearAllCache();
}