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:
authorMartin Felke <martin.felke@googlemail.com>2016-01-04 16:02:05 +0300
committerMartin Felke <martin.felke@googlemail.com>2016-01-04 16:02:30 +0300
commit8608a0f4f0e17e14d0b2d560914767c776778619 (patch)
tree3c043aff2de1d976d42bd464003e3930d570901f /source/blender/python
parent2cdd4a5467984e3d1cbff50436debcd2d44d71b6 (diff)
added new "Fake User" option for appending objects, this sets a fake user on each newly appended item except Groups and Objects.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_library.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_library.c b/source/blender/python/intern/bpy_library.c
index d241a766b83..3561f2b2fbd 100644
--- a/source/blender/python/intern/bpy_library.c
+++ b/source/blender/python/intern/bpy_library.c
@@ -416,7 +416,7 @@ static PyObject *bpy_lib_exit(BPy_Library *self, PyObject *UNUSED(args))
/* append, rather than linking */
if ((self->flag & FILE_LINK) == 0) {
- BKE_library_make_local(bmain, lib, true);
+ BKE_library_make_local(bmain, lib, true, false);
}
}