diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d57304d1..3f0e3775c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file. ### Fixed - [#1306], [#1768] Maximizing window on other than main monitor +- AS3 Cast exception when used tree filter and then direct editing ## [19.1.2] - 2023-10-16 ### Fixed diff --git a/src/com/jpexs/decompiler/flash/gui/MainPanel.java b/src/com/jpexs/decompiler/flash/gui/MainPanel.java index ac7de67d6..89e7e27a2 100644 --- a/src/com/jpexs/decompiler/flash/gui/MainPanel.java +++ b/src/com/jpexs/decompiler/flash/gui/MainPanel.java @@ -1850,7 +1850,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se public List getASTreeNodes(TagTree tree) { List result = new ArrayList<>(); - TagTreeModel tm = (TagTreeModel) tree.getModel(); + TagTreeModel tm = (TagTreeModel) tree.getFullModel(); if (tm == null) { return result; }