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 <bastien@blender.org>2020-06-15 16:02:32 +0300
committerJeroen Bakker <jeroen@blender.org>2020-06-25 10:30:59 +0300
commit4f3fdf7715c21c9f9fb1374efe12b027477e5d59 (patch)
tree92c2a976162a793072c82014f4cba4f607e96252 /source
parent554ed613ae5f26b205f65ed950ae50baf9f009b5 (diff)
Fix T77853: Error reloading linked library.
Issue related to how ID refcounting was changed when loading blendfile data...
Diffstat (limited to 'source')
-rw-r--r--source/blender/windowmanager/intern/wm_files_link.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/windowmanager/intern/wm_files_link.c b/source/blender/windowmanager/intern/wm_files_link.c
index da4e4160724..3ffd6c4a334 100644
--- a/source/blender/windowmanager/intern/wm_files_link.c
+++ b/source/blender/windowmanager/intern/wm_files_link.c
@@ -759,6 +759,10 @@ static void lib_relocate_do(Main *bmain,
BLI_addtail(which_libbase(bmain, GS(old_id->name)), old_id);
}
+ /* Since our (old) reloaded IDs were removed from main, the user count done for them in linking
+ * code is wrong, we need to redo it here after adding them back to main. */
+ BKE_main_id_refcount_recompute(bmain, false);
+
/* Note that in reload case, we also want to replace indirect usages. */
const short remap_flags = ID_REMAP_SKIP_NEVER_NULL_USAGE |
ID_REMAP_NO_INDIRECT_PROXY_DATA_USAGE |