Use link_count from children vocabulary and return the stored vocabulary if already...
[synfig.git] / synfig-core / src / synfig / valuenode_radialcomposite.cpp
index c9f24cb..85b882a 100644 (file)
@@ -55,6 +55,8 @@ using namespace synfig;
 synfig::ValueNode_RadialComposite::ValueNode_RadialComposite(const ValueBase &value):
        LinkableValueNode(value.get_type())
 {
+       Vocab ret(get_children_vocab());
+       set_children_vocab(ret);
        switch(get_type())
        {
                case ValueBase::TYPE_VECTOR:
@@ -315,8 +317,11 @@ ValueNode_RadialComposite::check_type(ValueBase::Type type)
 }
 
 LinkableValueNode::Vocab
-ValueNode_RadialComposite::get_param_vocab()const
+ValueNode_RadialComposite::get_children_vocab_vfunc()const
 {
+       if(children_vocab.size())
+               return children_vocab;
+
        LinkableValueNode::Vocab ret;
 
        switch(get_type())