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:
authorCampbell Barton <campbell@blender.org>2022-02-03 14:59:09 +0300
committerCampbell Barton <campbell@blender.org>2022-02-03 14:59:09 +0300
commit60a09bc1be217f4c89e2cd5f54f73048f8de2bf5 (patch)
treea551ba180af6dca20a724e35e60cca8f959c5d73 /source/blender/editors/sculpt_paint
parent5a2101f754b4f039970408bf5a7a469eb51e1487 (diff)
parent6c6556c5bd5064872745f7fa6b66d6a2fb744f19 (diff)
Merge branch 'blender-v3.1-release'
Diffstat (limited to 'source/blender/editors/sculpt_paint')
-rw-r--r--source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c4
1 files changed, 2 insertions, 2 deletions
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;