[Bf-blender-cvs] [0e9b210] master: Fix T44630: incorrect mirror modifier merge limit tooltip.

Brecht Van Lommel noreply at git.blender.org
Thu May 7 10:58:10 CEST 2015


Commit: 0e9b210595e3a1f07e079b9f3e5e3abb9a2039a9
Author: Brecht Van Lommel
Date:   Thu May 7 10:56:45 2015 +0200
Branches: master
https://developer.blender.org/rB0e9b210595e3a1f07e079b9f3e5e3abb9a2039a9

Fix T44630: incorrect mirror modifier merge limit tooltip.

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

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 8d0e955..1c719b1 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -1433,7 +1433,7 @@ static void rna_def_modifier_mirror(BlenderRNA *brna)
 	RNA_def_property_float_sdna(prop, NULL, "tolerance");
 	RNA_def_property_range(prop, 0, FLT_MAX);
 	RNA_def_property_ui_range(prop, 0, 1, 0.01, 6);
-	RNA_def_property_ui_text(prop, "Merge Limit", "Distance from axis within which mirrored vertices are merged");
+	RNA_def_property_ui_text(prop, "Merge Limit", "Distance within which mirrored vertices are merged");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
 	prop = RNA_def_property(srna, "mirror_object", PROP_POINTER, PROP_NONE);




More information about the Bf-blender-cvs mailing list