mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 08:46:11 +00:00
command line help fix, show dependet character ids in basic tag info
This commit is contained in:
@@ -2847,8 +2847,11 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
final SWF swf = getCurrentSwf();
|
||||
if (swf != null) {
|
||||
TreeItem item = tagTree.getCurrentTreeItem();
|
||||
if (item instanceof DefineSpriteTag) {
|
||||
timelineViewPanel.setTimelined((DefineSpriteTag) item);
|
||||
if (item instanceof TagScript) {
|
||||
item = ((TagScript) item).getTag();
|
||||
}
|
||||
if (item instanceof Timelined) {
|
||||
timelineViewPanel.setTimelined((Timelined) item);
|
||||
} else {
|
||||
timelineViewPanel.setTimelined(swf);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user