UI: Rename VCols to Color Attributes in edit mesh operators

A couple of edit mesh operators are still using "VCols" terminology,
which should be Color Attributes now. This just renames text seen
in redo panels. Internally it's still called VCols.

Pull Request: https://projects.blender.org/blender/blender/pulls/120075
This commit is contained in:
Nika Kutsniashvili 2024-03-29 19:30:25 +01:00 committed by Hans Goudey
parent 614a23e9f6
commit 47ced73952

@ -5685,7 +5685,7 @@ static void join_triangle_props(wmOperatorType *ot)
RNA_def_property_float_default(prop, DEG2RADF(40.0f));
RNA_def_boolean(ot->srna, "uvs", false, "Compare UVs", "");
RNA_def_boolean(ot->srna, "vcols", false, "Compare VCols", "");
RNA_def_boolean(ot->srna, "vcols", false, "Compare Color Attributes", "");
RNA_def_boolean(ot->srna, "seam", false, "Compare Seam", "");
RNA_def_boolean(ot->srna, "sharp", false, "Compare Sharp", "");
RNA_def_boolean(ot->srna, "materials", false, "Compare Materials", "");