Rename Color Attributes domain from "Point" to "Vertex"

Addresses T97257, to make it consistent with regular attributes tab

Review by: Julian Kaspar

Differential Revision: https://developer.blender.org/D14631
Ref D14631
This commit is contained in:
Joseph Eagar 2022-04-13 09:53:31 -07:00
parent 6da5ee8368
commit 95236d8a75
Notes: blender-bot 2023-02-14 01:21:16 +01:00
Referenced by issue #97257, Color Attributes tab: Different domain name for the same attribute
1 changed files with 1 additions and 1 deletions

View File

@ -380,7 +380,7 @@ void GEOMETRY_OT_color_attribute_add(wmOperatorType *ot)
prop = RNA_def_string(ot->srna, "name", "Color", MAX_NAME, "Name", "Name of color attribute");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
static EnumPropertyItem domains[3] = {{ATTR_DOMAIN_POINT, "POINT", 0, "Point", ""},
static EnumPropertyItem domains[3] = {{ATTR_DOMAIN_POINT, "POINT", 0, "Vertex", ""},
{ATTR_DOMAIN_CORNER, "CORNER", 0, "Face Corner", ""},
{0, nullptr, 0, nullptr, nullptr}};