replace alpha channel error message fixed

This commit is contained in:
honfika@gmail.com
2015-07-21 14:04:19 +02:00
parent b36305e3e1
commit cbcce6dfe8
5 changed files with 13 additions and 3 deletions

View File

@@ -2611,7 +2611,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
SWF swf = it.getSwf();
swf.clearImageCache();
} catch (IOException ex) {
logger.log(Level.SEVERE, "Invalid image", ex);
logger.log(Level.SEVERE, "Invalid alpha channel data", ex);
View.showMessageDialog(null, translate("error.image.invalid"), translate("error"), JOptionPane.ERROR_MESSAGE);
}