diff --git a/CHANGELOG.md b/CHANGELOG.md index dd6aa31f6..686c22401 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file. - [#2269] Nullpointer on importing (ImportAssets) a character that does not exists - Asking more than once for the same imported (ImportAssets) URL - ABC Explorer problems when index out of bounds (Usually in obfuscated code) +- Go to document class for classes with obfuscated name ## [21.0.1] - 2024-08-08 ### Added diff --git a/src/com/jpexs/decompiler/flash/gui/MainPanel.java b/src/com/jpexs/decompiler/flash/gui/MainPanel.java index d84f471a6..b6e155da7 100644 --- a/src/com/jpexs/decompiler/flash/gui/MainPanel.java +++ b/src/com/jpexs/decompiler/flash/gui/MainPanel.java @@ -2753,7 +2753,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se if (!abcList.isEmpty()) { ABCPanel abcPanel = getABCPanel(); for (ABCContainerTag c : abcList) { - if (c.getABC().findClassByName(documentClassPrintable) > -1) { + if (c.getABC().findClassByName(documentClass) > -1) { abcPanel.setAbc(c.getABC()); abcPanel.hilightScript(swf, documentClassPrintable); break;