[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [36918] branches/soc-2011-pepper/source/ blender/makesrna/intern/rna_constraint.c: Bugfix: Label for " Local With Parent" constraint space was broken by

Joshua Leung aligorith at gmail.com
Thu May 26 14:09:22 CEST 2011


Revision: 36918
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=36918
Author:   aligorith
Date:     2011-05-26 12:09:21 +0000 (Thu, 26 May 2011)
Log Message:
-----------
Bugfix: Label for "Local With Parent" constraint space was broken by
tooltips patch applied a few weeks ago in trunk

Modified Paths:
--------------
    branches/soc-2011-pepper/source/blender/makesrna/intern/rna_constraint.c

Modified: branches/soc-2011-pepper/source/blender/makesrna/intern/rna_constraint.c
===================================================================
--- branches/soc-2011-pepper/source/blender/makesrna/intern/rna_constraint.c	2011-05-26 12:02:31 UTC (rev 36917)
+++ branches/soc-2011-pepper/source/blender/makesrna/intern/rna_constraint.c	2011-05-26 12:09:21 UTC (rev 36918)
@@ -85,7 +85,7 @@
 static EnumPropertyItem owner_space_pchan_items[] = {
 	{0, "WORLD", 0, "World Space", "The constraint is applied relative to the world coordinate system"},
 	{2, "POSE", 0, "Pose Space", "The constraint is applied in Pose Space, the object transformation is ignored"},
-	{3, "LOCAL_WITH_PARENT", 0, "The constraint is applied relative to the local coordinate system of the object, with the parent transformation added"},
+	{3, "LOCAL_WITH_PARENT", 0, "Local With Parent", "The constraint is applied relative to the local coordinate system of the object, with the parent transformation added"},
 	{1, "LOCAL", 0, "Local Space", "The constraint is applied relative to the local coordinate sytem of the object"},
 	{0, NULL, 0, NULL, NULL}};
 




More information about the Bf-blender-cvs mailing list