Fixed: Text search was not available as context menu option for AS3 scripts folder

This commit is contained in:
Jindra Petřík
2025-05-08 23:52:04 +02:00
parent fd679eaf9a
commit 79948df3d8
2 changed files with 4 additions and 0 deletions

View File

@@ -62,6 +62,7 @@ All notable changes to this project will be documented in this file.
- Editing shape points / transform when first edge has no moveTo flag (coordinates 0, 0)
- Exceptions when closing non-ribbon window
- [PR215] ffdec.sh - Ignore all java options when checking version
- Text search was not available as context menu option for AS3 scripts folder
### Removed
- Option to preview flash items via ActiveX component is no longer available.

View File

@@ -1068,6 +1068,9 @@ public class TagTreeContextMenu extends JPopupMenu {
hasTexts = true;
}
}
if (item instanceof ClassesListTreeModel) {
hasScripts = true;
}
}
boolean allSelectedIsTag = true;