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:
authorCampbell Barton <ideasman42@gmail.com>2015-11-10 12:25:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-11-10 12:27:27 +0300
commit738bc300c7596b649a8974428b2569f2ca6483eb (patch)
treecfff2452decb66fbfb6b08e128a3855010696744 /source/blender/editors/mesh/editmesh_utils.c
parente26a0c5782cfdbd5f3372eb7c142b983ad570332 (diff)
Fix T46738: Crash adding hook to linked mesh dupli
Diffstat (limited to 'source/blender/editors/mesh/editmesh_utils.c')
-rw-r--r--source/blender/editors/mesh/editmesh_utils.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_utils.c b/source/blender/editors/mesh/editmesh_utils.c
index f102cf2b259..148398fca5c 100644
--- a/source/blender/editors/mesh/editmesh_utils.c
+++ b/source/blender/editors/mesh/editmesh_utils.c
@@ -380,6 +380,10 @@ void EDBM_mesh_make(ToolSettings *ts, Object *ob)
EDBM_selectmode_flush(me->edit_btmesh);
}
+/**
+ * \warning This can invalidate the #DerivedMesh cache of other objects (for linked duplicates).
+ * Most callers should run #DAG_id_tag_update on \a ob, see: T46738.
+ */
void EDBM_mesh_load(Object *ob)
{
Mesh *me = ob->data;