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>2015-02-10 14:03:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-02-10 14:03:10 +0300
commit27f81bf6ceeb2554ac34dc149468b6e29f9b2c27 (patch)
tree661b46c4aa95acc5f83e9a253313892d2d251eec /source/blender/blenkernel/intern/library.c
parent040b510df1ad1bff9858344386e6fba20de133f7 (diff)
correct last commit
Diffstat (limited to 'source/blender/blenkernel/intern/library.c')
-rw-r--r--source/blender/blenkernel/intern/library.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/library.c b/source/blender/blenkernel/intern/library.c
index a2a1b1015a6..fa4f9c6ed52 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;