mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-01 07:25:20 +00:00
Fixed AS 1/2 export selection of scripts in buttons, classes and similar
This commit is contained in:
@@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
|
||||
- AS 1/2 use DefineLocal in function instead of registers when eval, set is used
|
||||
- AS 1/2 direct editation - delete operator parenthesis
|
||||
- AS 1/2 direct editation - call function on eval
|
||||
- AS 1/2 export selection of scripts in buttons, classes and similar
|
||||
|
||||
## [14.5.0] - 2021-11-19
|
||||
### Added
|
||||
|
||||
@@ -1278,10 +1278,12 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
if (nodeType == TreeNodeType.SPRITE) {
|
||||
sprites.add((Tag) d);
|
||||
}
|
||||
if (nodeType == TreeNodeType.AS) {
|
||||
as12scripts.add(d);
|
||||
}
|
||||
if (nodeType == TreeNodeType.AS_FRAME) {
|
||||
if ((nodeType == TreeNodeType.AS)
|
||||
|| (nodeType == TreeNodeType.AS_FRAME)
|
||||
|| (nodeType == TreeNodeType.AS_BUTTON)
|
||||
|| (nodeType == TreeNodeType.AS_CLIP)
|
||||
|| (nodeType == TreeNodeType.AS_INIT)
|
||||
|| (nodeType == TreeNodeType.AS_CLASS)) {
|
||||
as12scripts.add(d);
|
||||
}
|
||||
if (nodeType == TreeNodeType.MOVIE) {
|
||||
|
||||
Reference in New Issue
Block a user