Fixed All SWF classes inside DoABC tags in the taglist view

This commit is contained in:
Jindra Petřík
2022-11-26 15:18:47 +01:00
parent 7b15db82b8
commit ff37b08edb
2 changed files with 2 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file.
- [#1810] AS3 Direct editation - XML attribute handling
- [#1810] AS3 Direct editation - Calls inside submethods using this
- [#1891] AS3 - duplicate variable declaration in some cases
- All SWF classes inside DoABC tags in the taglist view
## [17.0.2] - 2022-11-22
### Fixed

View File

@@ -75,7 +75,7 @@ public class TagListTreeModel extends AbstractTagTreeModel {
return abcTagsClassesTree.get(abcContainer);
}
ClassesListTreeModel model = new ClassesListTreeModel(abcContainer.getSwf(), Configuration.flattenASPackages.get());
ClassesListTreeModel model = new ClassesListTreeModel(abcContainer.getABC(), Configuration.flattenASPackages.get());
abcTagsClassesTree.put(abcContainer, model);
return model;
}