[Bf-blender-cvs] [0c3a52d571f] blender-v3.3-release: Fix (studio-reported) issue with overrides on library relocating.

Bastien Montagne noreply at git.blender.org
Mon Nov 28 13:08:37 CET 2022


Commit: 0c3a52d571fb8765e1b89810d21e70e1ae214d48
Author: Bastien Montagne
Date:   Thu Oct 20 11:22:51 2022 +0200
Branches: blender-v3.3-release
https://developer.blender.org/rB0c3a52d571fb8765e1b89810d21e70e1ae214d48

Fix (studio-reported) issue with overrides on library relocating.

Liboverrides that were using a missing linked reference ID would not get
their 'MISSING' tag properly cleared afer relocating, in case their
linked reference is no more missing.

Reported by Andy (@eyecandy) from Blender studio.

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

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

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

diff --git a/source/blender/blenkernel/intern/blendfile_link_append.c b/source/blender/blenkernel/intern/blendfile_link_append.c
index d9ca1e74391..15072e8420e 100644
--- a/source/blender/blenkernel/intern/blendfile_link_append.c
+++ b/source/blender/blenkernel/intern/blendfile_link_append.c
@@ -1603,6 +1603,9 @@ void BKE_blendfile_library_relocate(BlendfileLinkAppendContext *lapp_context,
         (id->tag & LIB_TAG_PRE_EXISTING) == 0) {
       continue;
     }
+    if ((id->override_library->reference->tag & LIB_TAG_MISSING) == 0) {
+      id->tag &= ~LIB_TAG_MISSING;
+    }
     if ((id->override_library->reference->tag & LIB_TAG_PRE_EXISTING) == 0) {
       BKE_lib_override_library_update(bmain, id);
     }



More information about the Bf-blender-cvs mailing list