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 <montagne29@wanadoo.fr>2019-03-03 23:14:19 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-03-03 23:14:52 +0300
commit419ee7bdc6f81d5fae1df136d72c3d4d23a6574a (patch)
treef32cab9bc7c1adf376b86fc186842747d93462c4 /source/blender/editors/object
parent31ad063ba43fe5831644fb0e91089b7766e7efac (diff)
Fix T62064: Linked object made by Make Links isn't showed in the scene you linked to.
Usual missing DEG relations rebuild tagging...
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_relations.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index 4d6864d2023..a324f2acd39 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -1314,6 +1314,8 @@ static int make_links_scene_exec(bContext *C, wmOperator *op)
}
CTX_DATA_END;
+ DEG_relations_tag_update(bmain);
+
/* redraw the 3D view because the object center points are colored differently */
WM_event_add_notifier(C, NC_OBJECT | ND_DRAW, NULL);