show swf bundles in tree

This commit is contained in:
Honfika
2014-01-21 20:55:14 +01:00
parent 254b91dd5d
commit 13722ba24c
29 changed files with 715 additions and 328 deletions

View File

@@ -18,6 +18,7 @@ package com.jpexs.decompiler.flash.gui;
import com.jpexs.decompiler.flash.AppStrings;
import com.jpexs.decompiler.flash.SWF;
import com.jpexs.decompiler.flash.SWFSourceInfo;
import com.jpexs.decompiler.flash.configuration.Configuration;
import com.jpexs.helpers.Helper;
import com.jpexs.helpers.LimitedInputStream;
@@ -195,7 +196,8 @@ public class LoadFromMemoryFrame extends AppFrame implements ActionListener {
return;
}
str.mark(Integer.MAX_VALUE);
Main.openFile(str, swf.process + " [" + (index + 1) + "]");
SWFSourceInfo sourceInfo = new SWFSourceInfo(str, null, swf.process + " [" + (index + 1) + "]");
Main.openFile(sourceInfo);
}
}