From: Carlos Lopez Date: Fri, 3 Sep 2010 18:49:16 +0000 (+0200) Subject: Show also the local name of the Linkable Value Node in the Type column. X-Git-Url: https://git.pterodactylus.net/?p=synfig.git;a=commitdiff_plain;h=7069bd3981355a54d918c0f3ff7901fb0a2925ca Show also the local name of the Linkable Value Node in the Type column. --- diff --git a/synfig-studio/src/gui/trees/canvastreestore.cpp b/synfig-studio/src/gui/trees/canvastreestore.cpp index 57fd42a..6b928f1 100644 --- a/synfig-studio/src/gui/trees/canvastreestore.cpp +++ b/synfig-studio/src/gui/trees/canvastreestore.cpp @@ -210,7 +210,9 @@ CanvasTreeStore::get_value_vfunc(const Gtk::TreeModel::iterator& iter, int colum if(value_desc.get_value_node()) { lname=value_desc.get_value_node()->get_name(); - if (lname=="animated" || lname=="static") + if (lname=="animated" || lname=="static" || + synfig::LinkableValueNode::Handle::cast_dynamic(value_desc.get_value_node()) + ) stype+=" (" + value_desc.get_value_node()->get_local_name() + ")"; } else if(value_desc.parent_is_layer_param())