Merge branch 'blender-v3.1-release'

This commit is contained in:
Campbell Barton 2022-02-03 22:59:09 +11:00
commit 60a09bc1be
1 changed files with 2 additions and 2 deletions

View File

@ -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;