command line help fix, show dependet character ids in basic tag info

This commit is contained in:
honfika@gmail.com
2015-07-26 09:58:19 +02:00
parent e1c6138db9
commit c9f1f45ed5
5 changed files with 101 additions and 26 deletions

View File

@@ -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);
}