mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-07 23:17:20 +00:00
Display DoInitAction tags in correct order
This commit is contained in:
@@ -1790,6 +1790,15 @@ public final class SWF implements SWFContainerItem, Timelined {
|
||||
subNodes.addAll(timeline.getAS2RootPackage().subPackages.values());
|
||||
subNodes.addAll(timeline.getAS2RootPackage().scripts.values());
|
||||
|
||||
for (ASMSource ass : timeline.asmSources) {
|
||||
if (ass instanceof DoInitActionTag) {
|
||||
String exportName = getExportName(((DoInitActionTag) ass).spriteId);
|
||||
if (exportName == null) {
|
||||
subNodes.add(ass);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (Tag tag : timeline.otherTags) {
|
||||
boolean hasInnerFrames = false;
|
||||
List<TreeItem> tagSubNodes = new ArrayList<>();
|
||||
|
||||
Reference in New Issue
Block a user