mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 14:20:46 +00:00
Fixed: #1665 Export selection not working for AS1/2 scripts other than frame scripts
This commit is contained in:
@@ -639,10 +639,16 @@ public class TagTree extends JTree {
|
||||
if (nodeType == TreeNodeType.BUTTON) {
|
||||
ret.add(d);
|
||||
}
|
||||
if (nodeType == TreeNodeType.AS) {
|
||||
ret.add(d);
|
||||
}
|
||||
if (nodeType == TreeNodeType.AS_FRAME) {
|
||||
if (nodeType == TreeNodeType.AS
|
||||
|| nodeType == TreeNodeType.AS_BUTTON
|
||||
|| nodeType == TreeNodeType.AS_CLASS
|
||||
|| nodeType == TreeNodeType.AS_CLIP
|
||||
|| nodeType == TreeNodeType.AS_CONST
|
||||
|| nodeType == TreeNodeType.AS_FRAME
|
||||
|| nodeType == TreeNodeType.AS_FUNCTION
|
||||
|| nodeType == TreeNodeType.AS_INIT
|
||||
|| nodeType == TreeNodeType.AS_INTERFACE
|
||||
|| nodeType == TreeNodeType.AS_VAR) {
|
||||
ret.add(d);
|
||||
}
|
||||
if (nodeType == TreeNodeType.MOVIE) {
|
||||
|
||||
Reference in New Issue
Block a user