diff --git a/CHANGELOG.md b/CHANGELOG.md index 9712b9b85..803cc1d8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/src/com/jpexs/decompiler/flash/gui/tagtree/TagTreeContextMenu.java b/src/com/jpexs/decompiler/flash/gui/tagtree/TagTreeContextMenu.java index 6ec230c9d..f28e48c00 100644 --- a/src/com/jpexs/decompiler/flash/gui/tagtree/TagTreeContextMenu.java +++ b/src/com/jpexs/decompiler/flash/gui/tagtree/TagTreeContextMenu.java @@ -1068,6 +1068,9 @@ public class TagTreeContextMenu extends JPopupMenu { hasTexts = true; } } + if (item instanceof ClassesListTreeModel) { + hasScripts = true; + } } boolean allSelectedIsTag = true;