Fix: Hide ".uv_seam" attribute in UI

The attribute, like the other attributes that start with `.` is not
supposed to be displayed in the spreadsheet or the attribute list
by default. This was missing from the commit that added the attribute.
This commit is contained in:
Hans Goudey 2023-03-08 11:41:18 -05:00
parent 27b9ce6ab6
commit 60f35207d4
1 changed files with 3 additions and 0 deletions

View File

@ -63,6 +63,9 @@ bool allow_procedural_attribute_access(StringRef attribute_name)
if (attribute_name.startswith(".hide")) {
return false;
}
if (attribute_name.startswith(".uv")) {
return false;
}
if (attribute_name.startswith("." UV_VERTSEL_NAME ".")) {
return false;
}