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:
authorLukas Tönne <lukas.toenne@gmail.com>2014-05-09 16:59:14 +0400
committerLukas Tönne <lukas.toenne@gmail.com>2014-05-09 17:02:21 +0400
commit6f71491d61d5d99954b23b5b240f031055da602e (patch)
tree009524bb91d1c1613d0c978f9ea52dc64c5c6157 /source/blender/blenkernel/intern/material.c
parent31849cafc26ad3e90ba308a14df5bd6ca66a4cbb (diff)
Fix T40108: Copying materials leaves a shared Action datablock in nested
bNodeTree blocks. This was broken by rB6e99fb0 (own commit). I expected the `do_action` argument to be of no importance in this case due to node trees using material animation, but this is not the case. Anyway, this patch adds back a do_action to the BKE_libblock_copy_nolib function as well to restore the previous behavior.
Diffstat (limited to 'source/blender/blenkernel/intern/material.c')
-rw-r--r--source/blender/blenkernel/intern/material.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/material.c b/source/blender/blenkernel/intern/material.c
index c8ad920b2c3..de3aea9267f 100644
--- a/source/blender/blenkernel/intern/material.c
+++ b/source/blender/blenkernel/intern/material.c
@@ -257,7 +257,7 @@ Material *localize_material(Material *ma)
Material *man;
int a;
- man = BKE_libblock_copy_nolib(&ma->id);
+ man = BKE_libblock_copy_nolib(&ma->id, false);
/* no increment for texture ID users, in previewrender.c it prevents decrement */
for (a = 0; a < MAX_MTEX; a++) {