text search fix

This commit is contained in:
honfika@gmail.com
2016-05-07 16:48:19 +02:00
parent c05a482231
commit bd84053949
2 changed files with 2 additions and 3 deletions

View File

@@ -1709,7 +1709,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
if (swf.isAS3()) {
abcResult = getABCPanel().search(swf, txt, ignoreCase, regexp, this);
} else {
actionResult = getActionPanel().search(txt, ignoreCase, regexp, this);
actionResult = getActionPanel().search(swf, txt, ignoreCase, regexp, this);
}
List<ABCPanelSearchResult> fAbcResult = abcResult;