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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-05-29 18:55:01 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-05-29 18:55:01 +0400
commitec4f6750557218be262cacea53ef4cb0ccaa0671 (patch)
tree433e584317dd7ad4abd04c62ca122d2244349112 /source/blender/makesrna/intern/rna_nodetree.c
parentb63a2be5c16d9c0c728cf4e07dc565267b9d2a47 (diff)
Fixed stupid typo: dispill vs. despill
Diffstat (limited to 'source/blender/makesrna/intern/rna_nodetree.c')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 7d2935ece6e..8cd56983d6c 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -3073,10 +3073,10 @@ static void def_cmp_keying(StructRNA *srna)
RNA_def_struct_sdna_from(srna, "NodeKeyingData", "storage");
- prop = RNA_def_property(srna, "dispill_factor", PROP_FLOAT, PROP_NONE);
- RNA_def_property_float_sdna(prop, NULL, "dispill_factor");
+ prop = RNA_def_property(srna, "despill_factor", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "despill_factor");
RNA_def_property_range(prop, 0.0f, 1.0f);
- RNA_def_property_ui_text(prop, "Dispill", "");
+ RNA_def_property_ui_text(prop, "Despill", "");
RNA_def_property_update(prop, NC_NODE|NA_EDITED, "rna_Node_update");
prop = RNA_def_property(srna, "clip_black", PROP_FLOAT, PROP_FACTOR);