[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [39246] trunk/blender/source/blender/ makesrna/intern/rna_constraint.c: fix [#28203] Misplaced string in bone constraints

Campbell Barton ideasman42 at gmail.com
Wed Aug 10 09:49:19 CEST 2011


Revision: 39246
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39246
Author:   campbellbarton
Date:     2011-08-10 07:49:18 +0000 (Wed, 10 Aug 2011)
Log Message:
-----------
fix [#28203] Misplaced string in bone constraints

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_constraint.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_constraint.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_constraint.c	2011-08-10 07:39:10 UTC (rev 39245)
+++ trunk/blender/source/blender/makesrna/intern/rna_constraint.c	2011-08-10 07:49:18 UTC (rev 39246)
@@ -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