Issue #903 FLA export - fix for missing fontName, fix last frame when no last ShowFrameTag present

This commit is contained in:
Jindra Petřík
2015-05-30 07:11:50 +02:00
parent 51f1e11179
commit 58c24aa746
2 changed files with 33 additions and 2 deletions

View File

@@ -1839,7 +1839,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
} else {
swf.exportXfl(errorHandler, selfile.getAbsolutePath(), new File(swf.getFile()).getName(), ApplicationInfo.APPLICATION_NAME, ApplicationInfo.applicationVerName, ApplicationInfo.version, Configuration.parallelSpeedUp.get(), selectedVersion);
}
} catch (IOException ex) {
} catch (Exception ex) {
View.showMessageDialog(null, translate("error.export") + ": " + ex.getClass().getName() + " " + ex.getLocalizedMessage(), translate("error"), JOptionPane.ERROR_MESSAGE);
}
Helper.freeMem();