view movieclip parts

This commit is contained in:
Jindra Petřík
2015-12-18 15:59:02 +01:00
parent 27c60f3ff5
commit c64983d07a
@@ -382,7 +382,7 @@ public class ABCPanel extends JPanel implements ItemListener, SearchListener<ABC
public VariableNode getChildAt(int index) {
ensureLoaded();
Long parId = 0L;
if (thisVar != null && thisVar.vType == VariableType.OBJECT) {
if (thisVar != null && (thisVar.vType == VariableType.OBJECT || thisVar.vType == VariableType.MOVIECLIP)) {
parId = (Long) thisVar.value;
}
VariableNode vn = new VariableNode(level + 1, childs.get(index), parId, childTraits.get(index));