[Bf-blender-cvs] [ce0596e] master: Bugfix T40945: Typo in tooltip for SSS property

Joshua Leung noreply at git.blender.org
Fri Jul 4 06:36:05 CEST 2014


Commit: ce0596ed163c1d6aed594b35fc088a24c0ebf49b
Author: Joshua Leung
Date:   Fri Jul 4 16:35:54 2014 +1200
https://developer.blender.org/rBce0596ed163c1d6aed594b35fc088a24c0ebf49b

Bugfix T40945: Typo in tooltip for SSS property

===================================================================

M	source/blender/makesrna/intern/rna_material.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c
index 3658259..734d98f 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");
 }




More information about the Bf-blender-cvs mailing list