mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 13:00:47 +00:00
FLA export bitmapfill fix
This commit is contained in:
@@ -296,9 +296,9 @@ public class XFLConverter {
|
||||
if (bitmapCh instanceof ImageTag) {
|
||||
ImageTag it = (ImageTag) bitmapCh;
|
||||
ret += "bitmap" + bitmapCh.getCharacterId() + "." + it.getImageFormat();
|
||||
}else{
|
||||
if(bitmapCh!=null){
|
||||
Logger.getLogger(XFLConverter.class.getName()).log(Level.SEVERE, "Suspicious bitmapfill:"+bitmapCh.getClass().getSimpleName());
|
||||
} else {
|
||||
if (bitmapCh != null) {
|
||||
Logger.getLogger(XFLConverter.class.getName()).log(Level.SEVERE, "Suspicious bitmapfill:" + bitmapCh.getClass().getSimpleName());
|
||||
}
|
||||
return "<SolidColor color=\"#ffffff\" />";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user