Small typo fix for tooltip of FModifier.blend_out

Cheers to "Lockal" for finding this one!
This commit is contained in:
Joshua Leung 2011-12-13 10:15:14 +00:00
parent 8b6100aa26
commit ccd916e100

@ -1080,7 +1080,7 @@ static void rna_def_fmodifier(BlenderRNA *brna)
prop= RNA_def_property(srna, "blend_out", PROP_FLOAT, PROP_NONE); prop= RNA_def_property(srna, "blend_out", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_sdna(prop, NULL, "blendout"); RNA_def_property_float_sdna(prop, NULL, "blendout");
RNA_def_property_float_funcs(prop, NULL, NULL, "rna_FModifier_blending_range"); 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); RNA_def_property_update(prop, NC_ANIMATION|ND_KEYFRAME_PROP, NULL);
/* influence */ /* influence */