Added #1765 Quick search tree for everything, not just AS3 classes

This commit is contained in:
Jindra Petřík
2022-12-18 23:10:24 +01:00
parent 3b2939c4ba
commit 296f58f059
13 changed files with 318 additions and 107 deletions
+1 -1
View File
@@ -491,7 +491,7 @@ public class View {
int rowCount = tree.getRowCount();
for (int i = 0; i < rowCount; i++) {
try {
TreePath path = tree.getPathForRow(i);
TreePath path = tree.getPathForRow(i);
if (tree.isExpanded(path)) {
List<String> pathAsStringList = new ArrayList<>();
for (Object pathCompnent : path.getPath()) {