[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [25737] trunk/blender/source/blender/ makesrna/intern/rna_fcurve.c: Quick fix for previous commit - changing order of items in the variable type menu to make it easier to use the transform one .

Joshua Leung aligorith at gmail.com
Tue Jan 5 13:03:33 CET 2010


Revision: 25737
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=25737
Author:   aligorith
Date:     2010-01-05 13:03:32 +0100 (Tue, 05 Jan 2010)

Log Message:
-----------
Quick fix for previous commit - changing order of items in the variable type menu to make it easier to use the transform one.

Also, forgot to mention in previous commit that I tweaked the path-renaming code to only rename driver targets that were being used, and commenting out some code there that wouldn't work...

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_fcurve.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_fcurve.c	2010-01-05 11:59:12 UTC (rev 25736)
+++ trunk/blender/source/blender/makesrna/intern/rna_fcurve.c	2010-01-05 12:03:32 UTC (rev 25737)
@@ -750,9 +750,9 @@
 	
 	static EnumPropertyItem prop_type_items[] = {
 		{DVAR_TYPE_SINGLE_PROP, "SINGLE_PROP", 0, "Single Property", "Use the value from some RNA property (Default)"},
+		{DVAR_TYPE_TRANSFORM_CHAN, "TRANSFORMS", 0, "Transform Channel", "Final transformation value of object or bone"},
 		{DVAR_TYPE_ROT_DIFF, "ROTATION_DIFF", 0, "Rotational Difference", "Use the angle between two bones"},
 		{DVAR_TYPE_LOC_DIFF, "LOC_DIFF", 0, "Distance", "Distance between two bones or objects"},
-		{DVAR_TYPE_TRANSFORM_CHAN, "TRANSFORMS", 0, "Transform Channel", "Final transformation value of object or bone"},
 		{0, NULL, 0, NULL, NULL}};
 		
 	





More information about the Bf-blender-cvs mailing list