Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2014-03-06 17:30:44 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-03-06 17:30:44 +0400
commita28dce6cc8d2b8338f220909bacc8ef7b1018677 (patch)
treef0b3e5722228c4a356f0c242a5b16bc3024f62b8
parentcfefc5d0d4e6e704333936a295d6ffa45122fb1b (diff)
Fix T38955: Misleading tooltip for Clean Tool in Weight Tools Toolshelf.
-rw-r--r--source/blender/editors/object/object_vgroup.c3
1 files changed, 2 insertions, 1 deletions
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");
}