From a84c823b891fcf440e134eb284024ea06aa1a9ff Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 17 Dec 2018 12:28:16 +0100 Subject: Fix T58652: Crash editing shape keys weirdness with instances This is a second attempt to get the crash fixed. The original fix worked, but it was reverted by d3e0d7f0825. Now the logic goes as: - All pointers which we can not have shared (the ones which are owned by the runtime) are cleared. - The rest of runtime stays untouched. This seems to be enough to keep particles happy. --- source/blender/blenkernel/BKE_library.h | 1 - 1 file changed, 1 deletion(-) (limited to 'source/blender/blenkernel/BKE_library.h') diff --git a/source/blender/blenkernel/BKE_library.h b/source/blender/blenkernel/BKE_library.h index 946cd23843d..a4eb40cbb38 100644 --- a/source/blender/blenkernel/BKE_library.h +++ b/source/blender/blenkernel/BKE_library.h @@ -81,7 +81,6 @@ enum { LIB_ID_COPY_CACHES = 1 << 18, /* Copy runtime data caches. */ LIB_ID_COPY_NO_ANIMDATA = 1 << 19, /* Don't copy id->adt, used by ID datablock localization routines. */ LIB_ID_COPY_CD_REFERENCE = 1 << 20, /* Mesh: Reference CD data layers instead of doing real copy. */ - LIB_ID_COPY_RUNTIME = 1 << 21, /* Copy ID's runtime field (for example. object->runtime). */ /* XXX Hackish/not-so-nice specific behaviors needed for some corner cases. * Ideally we should not have those, but we need them for now... */ -- cgit v1.2.3