mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-05 19:07:23 +00:00
pdf export fix (when no frame exists), text rendering fixed (alpha channel was ignored), bmp export fix (paddings when width%2==1), export in all formats for debugging
This commit is contained in:
@@ -41,7 +41,19 @@ public class GuiAbortRetryIgnoreHandler implements AbortRetryIgnoreHandler {
|
||||
return AbortRetryIgnoreHandler.IGNORE;
|
||||
}
|
||||
|
||||
int result = View.showOptionDialog(null, AppStrings.translate("error.occured").replace("%error%", thrown.getLocalizedMessage()), AppStrings.translate("error"), JOptionPane.YES_NO_OPTION, JOptionPane.ERROR_MESSAGE, null, options, "");
|
||||
String msg = null;
|
||||
if (thrown != null) {
|
||||
msg = thrown.getLocalizedMessage();
|
||||
if (msg == null) {
|
||||
msg = thrown.toString();
|
||||
}
|
||||
}
|
||||
|
||||
if (msg == null) {
|
||||
msg = "";
|
||||
}
|
||||
|
||||
int result = View.showOptionDialog(null, AppStrings.translate("error.occured").replace("%error%", msg), AppStrings.translate("error"), JOptionPane.YES_NO_OPTION, JOptionPane.ERROR_MESSAGE, null, options, "");
|
||||
if (result == AbortRetryIgnoreHandler.IGNORE_ALL) {
|
||||
ignoreAll = true;
|
||||
result = AbortRetryIgnoreHandler.IGNORE;
|
||||
|
||||
Reference in New Issue
Block a user