Commit: de5ff664b8f305766e87e5c987825260c1b5ba05
Author: Campbell Barton
Date:   Tue Feb 3 21:10:35 2015 +1100
Branches: temp_custom_loop_normals
https://developer.blender.org/rBde5ff664b8f305766e87e5c987825260c1b5ba05

tmp

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

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

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

diff --git a/source/blender/makesrna/intern/rna_modifier.c 
b/source/blender/makesrna/intern/rna_modifier.c
index 8be4b51..af2e8a0 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -4358,7 +4358,7 @@ static void rna_def_modifier_normaledit(BlenderRNA *brna)
        };
 
        static EnumPropertyItem prop_mix_mode_items[] = {
-               {MOD_NORMALEDIT_MIX_COPY, "COPY", 0, "Copy", "Copy new normals 
(i.e. replace old ones)"},
+               {MOD_NORMALEDIT_MIX_COPY, "COPY", 0, "Copy", "Copy new normals 
(overwrite existing)"},
                {MOD_NORMALEDIT_MIX_ADD, "ADD", 0, "Add", "Copy sum of new and 
org normals"},
                {MOD_NORMALEDIT_MIX_SUB, "SUB", 0, "Substract", "Copy new 
normals minus old normals"},
                {MOD_NORMALEDIT_MIX_MUL, "MUL", 0, "Multiply", "Copy product of 
old and new normals (*not* cross product)"},
@@ -4382,7 +4382,7 @@ static void rna_def_modifier_normaledit(BlenderRNA *brna)
 
        prop = RNA_def_property(srna, "mix_mode", PROP_ENUM, PROP_NONE);
        RNA_def_property_enum_items(prop, prop_mix_mode_items);
-       RNA_def_property_ui_text(prop, "Mix Mode", "How to mix new generated 
normals with existing ones");
+       RNA_def_property_ui_text(prop, "Mix Mode", "How to mix generated 
normals with existing ones");
        RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
        prop = RNA_def_float(srna, "mix_factor", 1.0f, 0.0f, 1.0f, "Mix Factor",

_______________________________________________
Bf-blender-cvs mailing list
Bf-blender-cvs@blender.org
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to