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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-02-25 01:27:40 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-02-25 01:27:40 +0300
commited7156a258e775de4ef891342de3b27a9c99afc4 (patch)
tree7be35b8146d5dca66d983fddae6ccb334edae5fe /source/blender/makesdna/DNA_node_types.h
parent93034dc3f6c1f756d83007600599301c54a6e0ec (diff)
Fix for bug #6747: make single button for node groups didn't work,
functionality was not implemented.
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index 0e2805c88b7..ecf86175999 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -58,7 +58,7 @@ typedef struct bNodeStack {
#define NS_OSA_VALUES 2
typedef struct bNodeSocket {
- struct bNodeSocket *next, *prev;
+ struct bNodeSocket *next, *prev, *new_sock;
char name[32];
bNodeStack ns; /* custom data for inputs, only UI writes in this */