Blame bugs/resolved/000018.txt

Carlos Lopez f4fed6
Subject: Edit context menu entry is not shown for waypoints of parent params
Carlos Lopez f4fed6
Carlos Lopez f4fed6
New skeleton, go to animation mode
Carlos Lopez f4fed6
animate the parent of any bone
Carlos Lopez f4fed6
In the Time track or the param time track
Carlos Lopez f4fed6
right click on the waypoint doesn't show the
Carlos Lopez f4fed6
"Edit" entry. Before it was shown.
Carlos Lopez f4fed6
Carlos Lopez f4fed6
------------------------------------------------------------------------
Chris Moore 19a4e9
dooglus, Tue Dec 16 03:44:36 CET 2008
Chris Moore 19a4e9
Chris Moore 19a4e9
layertree.cpp "if (param_tree_store_->find_first_value_node(value_node, row) && row)"
Chris Moore 19a4e9
isn't finding the valuenode in the parameter panel.  that's why the
Chris Moore 19a4e9
edit menu entry isn't being shown.
Chris Moore a19824
Chris Moore a19824
if I
Chris Moore a19824
	export SYNFIG_DISABLE_EXPANDABLE_BONE_PARENTS=1
Chris Moore a19824
then it works, and:
Chris Moore a19824
     canvastreestore.cpp:367 CanvasTreeStore::find_first_value_node vn = ValueNode_Animated
Chris Moore a19824
     layertree.cpp:761 found 'ValueNode (Skeleton):Bones>Static List:Item 001>Bone:Parent'
Chris Moore a19824
Chris Moore a19824
if I
Chris Moore a19824
	unset SYNFIG_DISABLE_EXPANDABLE_BONE_PARENTS
Chris Moore a19824
then it doesn't work, and:
Chris Moore a19824
     canvastreestore.cpp:367 CanvasTreeStore::find_first_value_node vn = ValueNode_Animated
Chris Moore a19824
     layertree.cpp:764 didn't find
Chris Moore a19824
Chris Moore a19824
SYNFIG_DISABLE_EXPANDABLE_BONE_PARENTS affects only canvastreestore.cpp's:
Chris Moore a19824
	CanvasTreeStore::set_row(Gtk::TreeRow row,synfigapp::ValueDesc value_desc, bool do_children)
Chris Moore a19824
Chris Moore a19824
------------------------------------------------------------------------
Chris Moore a19824
dooglus, Tue Dec 16 10:31:40 CET 2008
Chris Moore a19824
Chris Moore a19824
Fixed.