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'.

This commit is contained in:
Lukas Toenne
2013-09-23 08:20:16 +00:00
parent 6619d6cba7
commit 826a7db5c0

View File

@@ -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;