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:
authorClément Foucault <foucault.clem@gmail.com>2017-06-09 02:28:43 +0300
committerClément Foucault <foucault.clem@gmail.com>2017-06-09 02:28:43 +0300
commit3b9e8b385c8323248e2e0b7d8246089d736940ae (patch)
treeaae69addcf9411fd66133b17cc55494b1967f014 /source/blender/editors/object
parent67913c603cd31f72b1cd94e787f99179a8e966a5 (diff)
Fix compilation issue
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_add.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c
index 26a1f56bff9..411f8eb7347 100644
--- a/source/blender/editors/object/object_add.c
+++ b/source/blender/editors/object/object_add.c
@@ -536,7 +536,7 @@ static int probe_add_exec(bContext *C, wmOperator *op)
probe = (Probe *)ob->data;
probe->type = type;
- DAG_relations_tag_update(CTX_data_main(C));
+ DEG_relations_tag_update(CTX_data_main(C));
return OPERATOR_FINISHED;
}