From: Joshua Leung Date: Tue, 13 Dec 2011 10:15:14 +0000 (+0000) Subject: Small typo fix for tooltip of FModifier.blend_out X-Git-Tag: v2.61~6 X-Git-Url: https://git.blender.org/gitweb/gitweb.cgi/blender.git/commitdiff_plain/ccd916e100389c6a047ecc35d19a152103ae23ba Small typo fix for tooltip of FModifier.blend_out Cheers to "Lockal" for finding this one! --- 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 */