From a28dce6cc8d2b8338f220909bacc8ef7b1018677 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Thu, 6 Mar 2014 14:30:44 +0100 Subject: Fix T38955: Misleading tooltip for Clean Tool in Weight Tools Toolshelf. --- source/blender/editors/object/object_vgroup.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/object') diff --git a/source/blender/editors/object/object_vgroup.c b/source/blender/editors/object/object_vgroup.c index a7b5ba98b13..40cf7684201 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"); } -- cgit v1.2.3