[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [42600] trunk/blender/source/blender/ makesrna/intern/rna_fcurve.c: Small typo fix for tooltip of FModifier. blend_out

Joshua Leung aligorith at gmail.com
Tue Dec 13 11:15:16 CET 2011


Revision: 42600
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=42600
Author:   aligorith
Date:     2011-12-13 10:15:14 +0000 (Tue, 13 Dec 2011)
Log Message:
-----------
Small typo fix for tooltip of FModifier.blend_out

Cheers to "Lockal" for finding this one!

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	2011-12-13 10:07:22 UTC (rev 42599)
+++ trunk/blender/source/blender/makesrna/intern/rna_fcurve.c	2011-12-13 10:15:14 UTC (rev 42600)
@@ -1080,7 +1080,7 @@
 	prop= RNA_def_property(srna, "blend_out", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "blendout");
 	RNA_def_property_float_funcs(prop, NULL, NULL, "rna_FModifier_blending_range");
-	RNA_def_property_ui_text(prop, "Blend Out", "Number of frames from start frame for influence to fade out");
+	RNA_def_property_ui_text(prop, "Blend Out", "Number of frames from end frame for influence to fade out");
 	RNA_def_property_update(prop, NC_ANIMATION|ND_KEYFRAME_PROP, NULL);
 	
 	/* influence */




More information about the Bf-blender-cvs mailing list