mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-25 11:16:39 +00:00
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:
@@ -34,7 +34,6 @@ All notable changes to this project will be documented in this file.
|
||||
This may break backwards compatibility. For importing scripts from older
|
||||
versions of FFDec, you should move the scripts from `<default package>`
|
||||
to main scripts folder.
|
||||
|
||||
|
||||
### Fixed
|
||||
- [#2456] FLA export - NullPointer exception while exporting to CS4 or lower via commandline
|
||||
@@ -51,6 +50,8 @@ All notable changes to this project will be documented in this file.
|
||||
- AS1/2 direct editation - Position in the code should stay same after clicking Edit button
|
||||
- AS3 direct editation - Allow internal keyword on script traits (e.g. classes)
|
||||
- AS3 direct editation - NaN can be used as identifier
|
||||
- Pin header for AS2 script in the Resources view should show Class name in
|
||||
the title instead of tag full description
|
||||
|
||||
## [23.0.1] - 2025-05-16
|
||||
### Fixed
|
||||
|
||||
@@ -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 + "]";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user