Change viewport shading text from "Color" to "Attribute"

This change from T97104

Reviewed By: JulienKaspar, jbakker

Maniphest Tasks: T97104

Differential Revision: https://developer.blender.org/D14620
This commit is contained in:
Ramil Roosileht 2022-04-22 08:06:14 +02:00 committed by Jeroen Bakker
parent 33d102e5b2
commit d724d3ae58
Notes: blender-bot 2023-02-14 11:28:39 +01:00
Referenced by issue #97104, Change viewport shading option for "Color -> Color" to "Color -> Attribute"
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ static const EnumPropertyItem rna_enum_shading_color_type_items[] = {
{V3D_SHADING_SINGLE_COLOR, "SINGLE", 0, "Single", "Show scene in a single color"},
{V3D_SHADING_OBJECT_COLOR, "OBJECT", 0, "Object", "Show object color"},
{V3D_SHADING_RANDOM_COLOR, "RANDOM", 0, "Random", "Show random object color"},
{V3D_SHADING_VERTEX_COLOR, "VERTEX", 0, "Color", "Show active color attribute"},
{V3D_SHADING_VERTEX_COLOR, "VERTEX", 0, "Attribute", "Show active color attribute"},
{V3D_SHADING_TEXTURE_COLOR, "TEXTURE", 0, "Texture", "Show texture"},
{0, NULL, 0, NULL, NULL},
};