mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-24 23:32:48 +00:00
#787 Search in AS bug (when navigating to searched results) fixed
This commit is contained in:
@@ -361,7 +361,12 @@ public class TagTreeModel implements TreeModel {
|
||||
return newPath;
|
||||
}
|
||||
} else {
|
||||
if (obj.equals(n)) {
|
||||
TreeItem n2 = n;
|
||||
if (n2 instanceof TagScript) {
|
||||
n2 = ((TagScript) n2).getTag();
|
||||
}
|
||||
|
||||
if (obj.equals(n2)) {
|
||||
return newPath;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user