Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-05-28 12:58:27 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-05-28 12:58:27 +0400
commit5486016e04386cf00550ac9ede8615d1daf281b9 (patch)
treeb61b236d282bde6b1c257cfceecac947924d2dbf /source/blender/nodes/texture
parentb39a53208319751fb2bfcd9633eb27e748a5897f (diff)
Fix #35547: incomplete tooltips in node editor
Descriptions were missing since PyNodes integration. Thanks to lukas for patch review!
Diffstat (limited to 'source/blender/nodes/texture')
-rw-r--r--source/blender/nodes/texture/node_texture_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/texture/node_texture_tree.c b/source/blender/nodes/texture/node_texture_tree.c
index 94589c927b3..859636ed4e5 100644
--- a/source/blender/nodes/texture/node_texture_tree.c
+++ b/source/blender/nodes/texture/node_texture_tree.c
@@ -170,7 +170,7 @@ void register_node_tree_type_tex(void)
strcpy(tt->idname, "TextureNodeTree");
strcpy(tt->ui_name, "Texture");
tt->ui_icon = 0; /* defined in drawnode.c */
- strcpy(tt->ui_description, "");
+ strcpy(tt->ui_description, "Texture nodes");
tt->foreach_nodeclass = foreach_nodeclass;
tt->update = update;