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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-03-31 23:15:56 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-03-31 23:15:56 +0400
commit42fca2f145b81d8b359164f17341bfc111360f22 (patch)
tree26d79f6650a956cf88fdfe1ab392911d104aa44d /source/blender/makesrna
parentf1186cb113941e87eebb03c80b9e8c4f3faee7c2 (diff)
Usual UI messages fixes...
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_curve.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c
index 31709f90249..43e50ed6c3d 100644
--- a/source/blender/makesrna/intern/rna_curve.c
+++ b/source/blender/makesrna/intern/rna_curve.c
@@ -1479,13 +1479,13 @@ static void rna_def_curve(BlenderRNA *brna)
prop = RNA_def_property(srna, "bevel_factor_mapping_start", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_sdna(prop, NULL, "bevfac1_mapping");
RNA_def_property_enum_items(prop, bevfac_mapping_items);
- RNA_def_property_ui_text(prop, "Start Mapping Type", "Determines how the start bevel factor is mappend to a spline");
+ RNA_def_property_ui_text(prop, "Start Mapping Type", "Determines how the start bevel factor is mapped to a spline");
RNA_def_property_update(prop, 0, "rna_Curve_update_data");
prop = RNA_def_property(srna, "bevel_factor_mapping_end", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_sdna(prop, NULL, "bevfac2_mapping");
RNA_def_property_enum_items(prop, bevfac_mapping_items);
- RNA_def_property_ui_text(prop, "End Mapping Type", "Determines how the end bevel factor is mappend to a spline");
+ RNA_def_property_ui_text(prop, "End Mapping Type", "Determines how the end bevel factor is mapped to a spline");
RNA_def_property_update(prop, 0, "rna_Curve_update_data");
/* XXX - would be nice to have a better way to do this, only add for testing. */