Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2011-12-13 14:15:14 +0400
committerJoshua Leung <aligorith@gmail.com>2011-12-13 14:15:14 +0400
commitccd916e100389c6a047ecc35d19a152103ae23ba (patch)
treefd0fca8a8b986cc41ca3ae50e198b1daa35be59d /source/blender
parent8b6100aa26d20d0f8ded4df4550e35749dd803eb (diff)
Small typo fix for tooltip of FModifier.blend_out
Cheers to "Lockal" for finding this one!
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_fcurve.c2
1 files changed, 1 insertions, 1 deletions
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 */