mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-29 18:34:42 +00:00
Added ExportAssets tag - show first item as description in the tree when there is only single item
This commit is contained in:
@@ -154,4 +154,14 @@ public class ExportAssetsTag extends SymbolClassTypeTag {
|
||||
public void getNeededCharacters(Set<Integer> needed, SWF swf) {
|
||||
needed.addAll(tags);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
if (names.size() == 1) {
|
||||
return super.toString() + " (" + tags.get(0) + ": " + names.get(0)+")";
|
||||
}
|
||||
return super.toString();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user