UI: Improve tooltip for texture shading mode

Pointed out in T98506
This commit is contained in:
Aaron Carlisle 2022-10-17 22:57:01 -04:00
parent 85875455b9
commit c7051192e2
1 changed files with 5 additions and 1 deletions

View File

@ -426,7 +426,11 @@ static const EnumPropertyItem rna_enum_shading_color_type_items[] = {
{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, "Attribute", "Show active color attribute"},
{V3D_SHADING_TEXTURE_COLOR, "TEXTURE", 0, "Texture", "Show texture"},
{V3D_SHADING_TEXTURE_COLOR,
"TEXTURE",
0,
"Texture",
"Show the texture from the active image texture node using the active UV map coordinates"},
{0, NULL, 0, NULL, NULL},
};