From ccd916e100389c6a047ecc35d19a152103ae23ba Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 13 Dec 2011 10:15:14 +0000 Subject: [PATCH] Small typo fix for tooltip of FModifier.blend_out Cheers to "Lockal" for finding this one! --- source/blender/makesrna/intern/rna_fcurve.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c index 56f1efe3fed..98c6b269b5f 100644 --- a/source/blender/makesrna/intern/rna_fcurve.c +++ b/source/blender/makesrna/intern/rna_fcurve.c @@ -1080,7 +1080,7 @@ static void rna_def_fmodifier(BlenderRNA *brna) 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 */