mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-13 21:58:15 +00:00
external view of DefineBits tag fixed (include JPEGTables tag)
This commit is contained in:
@@ -753,7 +753,16 @@ public class PreviewPanel extends JPersistentSplitPane implements TagEditorPanel
|
||||
if (isSprite && chtId == n) {
|
||||
continue;
|
||||
}
|
||||
classicTag(swf.getCharacter(n)).writeTag(sos2);
|
||||
|
||||
CharacterTag characterTag = swf.getCharacter(n);
|
||||
if (characterTag instanceof DefineBitsTag) {
|
||||
JPEGTablesTag jtt = swf.getJtt();
|
||||
if (jtt != null) {
|
||||
jtt.writeTag(sos2);
|
||||
}
|
||||
}
|
||||
|
||||
classicTag(characterTag).writeTag(sos2);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user