Added Opening ABC file format (*.abc)

This commit is contained in:
Jindra Petřík
2022-11-20 22:12:19 +01:00
parent dd63487dd8
commit 344bdfa6ea
70 changed files with 1576 additions and 906 deletions
@@ -626,7 +626,7 @@ public class DumpTree extends JTree {
return null;
}
long address = range.getPos();
return searchTimelinedForTag(item.getSwf(), address);
return searchTimelinedForTag((SWF) item.getOpenable(), address);
}
public Timelined getTimelinedForItem(TreeItem item) {
@@ -674,7 +674,7 @@ public class DumpTree extends JTree {
for (DumpInfo sd : d.getChildInfos()) {
if (sd instanceof DumpInfoSwfNode) {
DumpInfoSwfNode si = (DumpInfoSwfNode) sd;
if (si.getSwf() == item.getSwf()) {
if (si.getSwf() == item.getOpenable()) {
DumpInfo di = si;
while (model.getChildCount(di) > 0) {
boolean found = false;