[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [18827] branches/blender2.5/blender/source /blender/editors/armature/editarmature.c: Fixed typos in previous commit

Joshua Leung aligorith at gmail.com
Fri Feb 6 11:52:13 CET 2009


Revision: 18827
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=18827
Author:   aligorith
Date:     2009-02-06 11:52:10 +0100 (Fri, 06 Feb 2009)

Log Message:
-----------
Fixed typos in previous commit

Modified Paths:
--------------
    branches/blender2.5/blender/source/blender/editors/armature/editarmature.c

Modified: branches/blender2.5/blender/source/blender/editors/armature/editarmature.c
===================================================================
--- branches/blender2.5/blender/source/blender/editors/armature/editarmature.c	2009-02-06 10:48:00 UTC (rev 18826)
+++ branches/blender2.5/blender/source/blender/editors/armature/editarmature.c	2009-02-06 10:52:10 UTC (rev 18827)
@@ -1957,7 +1957,7 @@
 void ARMATURE_OT_calculate_roll(wmOperatorType *ot)
 {
 	/* identifiers */
-	ot->name= "Align Bones";
+	ot->name= "Recalculate Roll";
 	ot->idname= "ARMATURE_OT_calculate_roll";
 	
 	/* api callbacks */
@@ -2065,14 +2065,14 @@
 	BLI_addtail(arm->edbo, bone);
 	
 	bone->flag |= BONE_TIPSEL;
-	bone->weight= 1.0F;
-	bone->dist= 0.25F;
-	bone->xwidth= 0.1;
-	bone->zwidth= 0.1;
-	bone->ease1= 1.0;
-	bone->ease2= 1.0;
-	bone->rad_head= 0.10;
-	bone->rad_tail= 0.05;
+	bone->weight= 1.0f;
+	bone->dist= 0.25f;
+	bone->xwidth= 0.1f;
+	bone->zwidth= 0.1f;
+	bone->ease1= 1.0f;
+	bone->ease2= 1.0f;
+	bone->rad_head= 0.10f;
+	bone->rad_tail= 0.05f;
 	bone->segments= 1;
 	bone->layer= arm->layer;
 	





More information about the Bf-blender-cvs mailing list