Fixed: Pin header for AS2 script in the Resources view should show Class name in the title instead of tag full description

This commit is contained in:
Jindra Petřík
2025-05-31 15:08:49 +02:00
parent bebf24c2f1
commit db2fa7f6e6
2 changed files with 3 additions and 2 deletions

View File

@@ -6670,7 +6670,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
public String itemToString(TreeItem item) {
int index = getCurrentTree().getFullModel().getItemIndex(item);
String itemToStr = item.toString();
String itemToStr = getCurrentTree().convertValueToText(item, false, false, true, 0, false);
if (index > 1) {
return itemToStr + " [" + index + "]";
}