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:
authorBastien Montagne <bastien@blender.org>2020-10-21 17:58:06 +0300
committerBastien Montagne <bastien@blender.org>2020-10-21 17:59:11 +0300
commit62528677bf5d1feadeb8a6020922de3b59e8cbb2 (patch)
treeb64c368967363fb8d777b0d6167c2955536122b3 /source/blender/blenkernel/intern/lib_id.c
parent959a06b8ffdfe7eb28721c6ec559354825819058 (diff)
Fix 'Make Local' operation to support liboverrides.
One can now use 'make local' from the Outliner or the 3DView to also fully localize overrides of linked data.
Diffstat (limited to 'source/blender/blenkernel/intern/lib_id.c')
-rw-r--r--source/blender/blenkernel/intern/lib_id.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/lib_id.c b/source/blender/blenkernel/intern/lib_id.c
index 27422440cd5..ae6ee71da82 100644
--- a/source/blender/blenkernel/intern/lib_id.c
+++ b/source/blender/blenkernel/intern/lib_id.c
@@ -1884,6 +1884,9 @@ void BKE_library_make_local(Main *bmain,
if (id->lib == NULL) {
id->tag &= ~(LIB_TAG_EXTERN | LIB_TAG_INDIRECT | LIB_TAG_NEW);
id->flag &= ~LIB_INDIRECT_WEAK_LINK;
+ if (ID_IS_OVERRIDE_LIBRARY_REAL(id)) {
+ BKE_lib_override_library_free(&id->override_library, true);
+ }
}
/* The check on the fourth line (LIB_TAG_PRE_EXISTING) is done so it's possible to tag data
* you don't want to be made local, used for appending data,