[Bf-blender-cvs] [6c6556c5bd5] blender-v3.1-release: Docs: correct weight paint sample description

Campbell Barton noreply at git.blender.org
Thu Feb 3 12:59:04 CET 2022


Commit: 6c6556c5bd5064872745f7fa6b66d6a2fb744f19
Author: Campbell Barton
Date:   Thu Feb 3 22:55:40 2022 +1100
Branches: blender-v3.1-release
https://developer.blender.org/rB6c6556c5bd5064872745f7fa6b66d6a2fb744f19

Docs: correct weight paint sample description

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

M	source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c

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

diff --git a/source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c b/source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c
index 1dfc4db6ac3..46c2acf112a 100644
--- a/source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c
+++ b/source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c
@@ -428,9 +428,9 @@ void PAINT_OT_weight_sample_group(wmOperatorType *ot)
   /* flags */
   ot->flag = OPTYPE_UNDO;
 
-  /* keyingset to use (dynamic enum) */
+  /* Group to use (dynamic enum). */
   prop = RNA_def_enum(
-      ot->srna, "group", DummyRNA_DEFAULT_items, 0, "Keying Set", "The Keying Set to use");
+      ot->srna, "group", DummyRNA_DEFAULT_items, 0, "Group", "Vertex group to set as active");
   RNA_def_enum_funcs(prop, weight_paint_sample_enum_itemf);
   RNA_def_property_flag(prop, PROP_ENUM_NO_TRANSLATE);
   ot->prop = prop;



More information about the Bf-blender-cvs mailing list