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>2014-07-04 08:35:54 +0400
committerJoshua Leung <aligorith@gmail.com>2014-07-04 08:35:54 +0400
commitce0596ed163c1d6aed594b35fc088a24c0ebf49b (patch)
treecc46df93d8cf088abca6e35ddaf45be7438ad9d8 /source/blender/makesrna/intern
parent81c3fc9726c64f58ee2976b732fb2701c768f6de (diff)
Bugfix T40945: Typo in tooltip for SSS property
Diffstat (limited to 'source/blender/makesrna/intern')
-rw-r--r--source/blender/makesrna/intern/rna_material.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c
index 36582597113..734d98f1029 100644
--- a/source/blender/makesrna/intern/rna_material.c
+++ b/source/blender/makesrna/intern/rna_material.c
@@ -1517,7 +1517,7 @@ static void rna_def_material_sss(BlenderRNA *brna)
prop = RNA_def_property(srna, "use", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "sss_flag", MA_DIFF_SSS);
- RNA_def_property_ui_text(prop, "Enabled", "Enable diffuse subsurface scatting effects in a material");
+ RNA_def_property_ui_text(prop, "Enabled", "Enable diffuse subsurface scattering effects in a material");
RNA_def_property_update(prop, 0, "rna_Material_update");
}