Export DoABC tags to ABC file on Resources tab too

This commit is contained in:
Jindra Petřík
2022-11-20 17:51:18 +01:00
parent bfefdf3e75
commit 664ea1bf23
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ All notable changes to this project will be documented in this file.
- Flattened ActionScript packages (one row per package instead package tree), can be turned off in settings
- [#1820] Opening standalone ABC files (*.abc)
- Classes tree inside DoABC tags in taglist view
- Export ABC data from DoABC tags in taglist view
- Export ABC data from DoABC tags
### Fixed
- [#1869] Replace references now replaces all references, not just PlaceObject

View File

@@ -840,7 +840,7 @@ public class TagTreeContextMenu extends JPopupMenu {
if (firstItem instanceof ABC) {
addAs3ClassMenuItem.setVisible(true);
}
if ((firstItem instanceof ABCContainerTag) && mainPanel.getCurrentView() == MainPanel.VIEW_TAGLIST) {
if (firstItem instanceof ABCContainerTag) {
addAs3ClassMenuItem.setVisible(true);
exportABCMenuItem.setVisible(true);
}