#1068 MorphShape with focal gradient fix

ImageFormat correct extension
Logging exception on FLA export
FLA XML formatting fix
This commit is contained in:
Jindra Petřík
2015-10-27 23:47:30 +01:00
parent 4d6dda002e
commit 6a9d7aa0e6
5 changed files with 63 additions and 10 deletions

View File

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