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:
authorCampbell Barton <ideasman42@gmail.com>2012-08-22 12:54:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-22 12:54:18 +0400
commitffcc63a7d0ef6e0651412588ec5e8867e7e0e023 (patch)
tree7799c26b3eed5b5c36a29f383ef0e7913ae00aff /source/blender/editors/space_node/node_group.c
parent3793e178f46b571a9c026e139eac1bbe59b83c82 (diff)
node tree functions for copy/free now support optional ID user count management,
this is not used yet, so no functional changes.
Diffstat (limited to 'source/blender/editors/space_node/node_group.c')
-rw-r--r--source/blender/editors/space_node/node_group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/node_group.c b/source/blender/editors/space_node/node_group.c
index efd2378bf31..4e3529738e6 100644
--- a/source/blender/editors/space_node/node_group.c
+++ b/source/blender/editors/space_node/node_group.c
@@ -424,7 +424,7 @@ static int node_group_ungroup(bNodeTree *ntree, bNode *gnode)
* - all of wgroup's nodes are transferred across to their new home
* - ngroup (i.e. the source NodeTree) is left unscathed
*/
- wgroup = ntreeCopyTree(ngroup);
+ wgroup = ntreeCopyTree_ex(ngroup, FALSE); /* TODO: do_id_user arg needs checking */
/* add the nodes into the ntree */
for (node = wgroup->nodes.first; node; node = nextn) {