Fixed: Go to document class for classes with obfuscated name

This commit is contained in:
Jindra Petřík
2024-08-11 18:57:03 +02:00
parent cf34d712a1
commit 02baf4baa6
2 changed files with 2 additions and 1 deletions

View File

@@ -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;