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");
 }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to