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
path: root/source
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2019-06-25 22:17:29 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-06-25 22:18:20 +0300
commitf24f70b16252c09507e2ce41391935472ea1b8f0 (patch)
tree38b248c9994f29b181149b128626b8b53336cc51 /source
parent0e7187f3598d29ce49e7a01b3c2df57255acba93 (diff)
Fix (unreported) missing Scene's GPencil pointer handling in library_query...
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/library_query.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/library_query.c b/source/blender/blenkernel/intern/library_query.c
index 8bbc0bb8ae1..691ef4a4dba 100644
--- a/source/blender/blenkernel/intern/library_query.c
+++ b/source/blender/blenkernel/intern/library_query.c
@@ -456,6 +456,7 @@ static void library_foreach_ID_link(Main *bmain,
CALLBACK_INVOKE(scene->world, IDWALK_CB_USER);
CALLBACK_INVOKE(scene->set, IDWALK_CB_NEVER_SELF);
CALLBACK_INVOKE(scene->clip, IDWALK_CB_USER);
+ CALLBACK_INVOKE(scene->gpd, IDWALK_CB_USER);
CALLBACK_INVOKE(scene->r.bake.cage_object, IDWALK_CB_NOP);
if (scene->nodetree) {
/* nodetree **are owned by IDs**, treat them as mere sub-data and not real ID! */