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:
Diffstat (limited to 'source/blender/nodes/intern/node_util.c')
-rw-r--r--source/blender/nodes/intern/node_util.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/nodes/intern/node_util.c b/source/blender/nodes/intern/node_util.c
index cf0be3fd53a..1cc8c282179 100644
--- a/source/blender/nodes/intern/node_util.c
+++ b/source/blender/nodes/intern/node_util.c
@@ -27,6 +27,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/nodes/intern/node_util.c
+ * \ingroup nodes
+ */
+
+
#include "CMP_util.h"
#include "SHD_util.h"
@@ -56,7 +61,7 @@ void node_copy_standard_storage(bNode *orig_node, bNode *new_node)
const char *node_blend_label(bNode *node)
{
const char *name;
- RNA_enum_name(node_blend_type_items, node->custom1, &name);
+ RNA_enum_name(ramp_blend_items, node->custom1, &name);
return name;
}