mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 21:10:46 +00:00
Added Opening ABC file format (*.abc)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user