mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-15 22:52:01 +00:00
Added Opening ABC file format (*.abc)
This commit is contained in:
@@ -20,6 +20,7 @@ import com.jpexs.decompiler.flash.SWF;
|
||||
import com.jpexs.decompiler.flash.configuration.Configuration;
|
||||
import com.jpexs.decompiler.flash.gui.tagtree.TreeRoot;
|
||||
import com.jpexs.decompiler.flash.timeline.TagScript;
|
||||
import com.jpexs.decompiler.flash.treeitems.Openable;
|
||||
import com.jpexs.decompiler.flash.treeitems.TreeItem;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
@@ -355,11 +356,11 @@ public class PinsPanel extends JPanel {
|
||||
rebuild();
|
||||
}
|
||||
|
||||
public void removeSwf(SWF swf) {
|
||||
public void removeOpenable(Openable openable) {
|
||||
for (int i = 0; i < items.size(); i++) {
|
||||
TreeItem item = items.get(i);
|
||||
SWF itemSwf = item.getSwf();
|
||||
if (itemSwf == swf || itemSwf == null) {
|
||||
Openable itemOpenable = item.getOpenable();
|
||||
if (itemOpenable == openable || itemOpenable == null) {
|
||||
|
||||
String tagTreePath = mainPanel.tagTree.getItemPathString(item);
|
||||
if (tagTreePath == null) {
|
||||
|
||||
Reference in New Issue
Block a user