mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 20:04:37 +00:00
"other tags" category fixed (ShowFrames removed)
This commit is contained in:
@@ -170,7 +170,7 @@ public class TagTreeModel implements TreeModel {
|
||||
}
|
||||
break;
|
||||
default:
|
||||
if (!actionScriptTags.contains(t) && !ShowFrameTag.isNestedTagType(t.getId())) {
|
||||
if (!actionScriptTags.contains(t) && t.getId() != ShowFrameTag.ID && !ShowFrameTag.isNestedTagType(t.getId())) {
|
||||
others.add(new TagNode(t));
|
||||
}
|
||||
break;
|
||||
@@ -295,7 +295,7 @@ public class TagTreeModel implements TreeModel {
|
||||
TreeNodeType ttype = TagTree.getTreeNodeType(t);
|
||||
switch (ttype) {
|
||||
default:
|
||||
if (!actionScriptTags.contains(t) && !ShowFrameTag.isNestedTagType(t.getId())) {
|
||||
if (!actionScriptTags.contains(t) && t.getId() != ShowFrameTag.ID && !ShowFrameTag.isNestedTagType(t.getId())) {
|
||||
if (!(t instanceof SoundStreamHeadTypeTag)) {
|
||||
others.add(new TagNode(t));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user