[Bf-blender-cvs] [664bf9fecb0] temp-sculpt-colors: temp-sculpt-colors: Rename vertex colors panel to color attributes

Joseph Eagar noreply at git.blender.org
Tue Feb 15 19:18:56 CET 2022


Commit: 664bf9fecb0ee4ca1bba704b1036f698d09e127a
Author: Joseph Eagar
Date:   Tue Feb 15 09:50:54 2022 -0800
Branches: temp-sculpt-colors
https://developer.blender.org/rB664bf9fecb0ee4ca1bba704b1036f698d09e127a

temp-sculpt-colors: Rename vertex colors panel to color attributes

===================================================================

M	release/scripts/startup/bl_ui/properties_data_mesh.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py b/release/scripts/startup/bl_ui/properties_data_mesh.py
index f973312b24c..e1bb3fca170 100644
--- a/release/scripts/startup/bl_ui/properties_data_mesh.py
+++ b/release/scripts/startup/bl_ui/properties_data_mesh.py
@@ -469,7 +469,7 @@ class MESH_UL_color_attributes(UIList):
         sub.label(text="%s ▶ %s" % (domain_name, data_type.name))
 
 class DATA_PT_vertex_colors(MeshButtonsPanel, Panel):
-    bl_label = "Vertex Colors"
+    bl_label = "Color Attributes"
     bl_options = {'DEFAULT_CLOSED'}
     COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'}
 
@@ -548,7 +548,7 @@ class DATA_PT_remesh(MeshButtonsPanel, Panel):
             col.prop(mesh, "use_remesh_preserve_volume", text="Volume")
             col.prop(mesh, "use_remesh_preserve_paint_mask", text="Paint Mask")
             col.prop(mesh, "use_remesh_preserve_sculpt_face_sets", text="Face Sets")
-            col.prop(mesh, "use_remesh_preserve_vertex_colors", text="Vertex Colors")
+            col.prop(mesh, "use_remesh_preserve_vertex_colors", text="Color Attributes")
 
             col.operator("object.voxel_remesh", text="Voxel Remesh")
         else:



More information about the Bf-blender-cvs mailing list