[Bf-blender-cvs] [c7051192e21] master: UI: Improve tooltip for texture shading mode

Aaron Carlisle noreply at git.blender.org
Tue Oct 18 04:57:16 CEST 2022


Commit: c7051192e217a89cceb9117776b62d45a9f8da38
Author: Aaron Carlisle
Date:   Mon Oct 17 22:57:01 2022 -0400
Branches: master
https://developer.blender.org/rBc7051192e217a89cceb9117776b62d45a9f8da38

UI: Improve tooltip for texture shading mode

Pointed out in T98506

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

M	source/blender/makesrna/intern/rna_space.c

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

diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 3cd8020ca6c..5c192b80dc1 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -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},
 };



More information about the Bf-blender-cvs mailing list