[Bf-blender-cvs] [a28dce6] master: Fix T38955: Misleading tooltip for Clean Tool in Weight Tools Toolshelf.

Bastien Montagne noreply at git.blender.org
Thu Mar 6 14:31:53 CET 2014


Commit: a28dce6cc8d2b8338f220909bacc8ef7b1018677
Author: Bastien Montagne
Date:   Thu Mar 6 14:30:44 2014 +0100
https://developer.blender.org/rBa28dce6cc8d2b8338f220909bacc8ef7b1018677

Fix T38955: Misleading tooltip for Clean Tool in Weight Tools Toolshelf.

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

M	source/blender/editors/object/object_vgroup.c

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

diff --git a/source/blender/editors/object/object_vgroup.c b/source/blender/editors/object/object_vgroup.c
index a7b5ba9..40cf768 100644
--- a/source/blender/editors/object/object_vgroup.c
+++ b/source/blender/editors/object/object_vgroup.c
@@ -3818,7 +3818,8 @@ void OBJECT_OT_vertex_group_clean(wmOperatorType *ot)
 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
 
 	vgroup_operator_subset_select_props(ot, true);
-	RNA_def_float(ot->srna, "limit", 0.0f, 0.0f, 1.0, "Limit", "Remove weights under this limit", 0.0f, 0.99f);
+	RNA_def_float(ot->srna, "limit", 0.0f, 0.0f, 1.0, "Limit",
+	              "Remove vertices which weight is below or equal to this limit", 0.0f, 0.99f);
 	RNA_def_boolean(ot->srna, "keep_single", false, "Keep Single",
 	                "Keep verts assigned to at least one group when cleaning");
 }




More information about the Bf-blender-cvs mailing list