From 826a7db5c06c809defe8108d2532c7290cda7fef Mon Sep 17 00:00:00 2001 From: Lukas Toenne Date: Mon, 23 Sep 2013 08:20:16 +0000 Subject: Fix #36797 make linked node groups local does not work. Node tree library functions where missing the ntreeMakeLocal entry, was still marked as 'not implemented'. --- source/blender/blenkernel/intern/library.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/blenkernel/intern/library.c b/source/blender/blenkernel/intern/library.c index c23fa097d3e..dd747ba4e46 100644 --- a/source/blender/blenkernel/intern/library.c +++ b/source/blender/blenkernel/intern/library.c @@ -269,7 +269,8 @@ bool id_make_local(ID *id, bool test) if (!test) BKE_action_make_local((bAction *)id); return true; case ID_NT: - return false; /* not implemented */ + if (!test) ntreeMakeLocal((bNodeTree *)id); + return true; case ID_BR: if (!test) BKE_brush_make_local((Brush *)id); return true; -- cgit v1.2.3