[Bf-blender-cvs] [27f81bf] master: correct last commit

Campbell Barton noreply at git.blender.org
Tue Feb 10 12:04:00 CET 2015


Commit: 27f81bf6ceeb2554ac34dc149468b6e29f9b2c27
Author: Campbell Barton
Date:   Tue Feb 10 22:03:10 2015 +1100
Branches: master
https://developer.blender.org/rB27f81bf6ceeb2554ac34dc149468b6e29f9b2c27

correct last commit

===================================================================

M	source/blender/blenkernel/intern/library.c

===================================================================

diff --git a/source/blender/blenkernel/intern/library.c b/source/blender/blenkernel/intern/library.c
index a2a1b10..fa4f9c6 100644
--- a/source/blender/blenkernel/intern/library.c
+++ b/source/blender/blenkernel/intern/library.c
@@ -379,7 +379,7 @@ bool id_copy(ID *id, ID **newid, bool test)
 			return false;  /* can't be copied from here */
 		case ID_GD:
 			if (!test) *newid = (ID *)gpencil_data_duplicate((bGPdata *)id, false);
-			return false;  /* not implemented */
+			return true;
 		case ID_MSK:
 			if (!test) *newid = (ID *)BKE_mask_copy((Mask *)id);
 			return true;




More information about the Bf-blender-cvs mailing list