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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user