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>2018-05-29 16:59:18 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-05-29 17:02:53 +0300
commit8f670dd855b1d81fcf619b3b94ba4bfaf51e896d (patch)
tree681c0dabf0af6e17ead533d174fde08e55e9cd0f /source/blender/makesrna/intern/rna_main_api.c
parent9d037153f70c9bcc665fffa4971d1517044dbf29 (diff)
parentf7af08b5feecd89ea32c8905de1e61d575ff4bf1 (diff)
Merge branch 'master' into blender2.8
Conflicts: source/blender/blenkernel/BKE_material.h source/blender/blenkernel/BKE_mesh.h source/blender/blenkernel/intern/library_remap.c source/blender/blenkernel/intern/material.c source/blender/editors/object/object_relations.c source/blender/editors/render/render_preview.c source/blender/makesrna/intern/rna_object.c
Diffstat (limited to 'source/blender/makesrna/intern/rna_main_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_main_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_main_api.c b/source/blender/makesrna/intern/rna_main_api.c
index 56035f8239c..295bb7f120f 100644
--- a/source/blender/makesrna/intern/rna_main_api.c
+++ b/source/blender/makesrna/intern/rna_main_api.c
@@ -251,7 +251,7 @@ static Object *rna_Main_objects_new(Main *bmain, ReportList *reports, const char
ob = BKE_object_add_only_object(bmain, type, safe_name);
ob->data = data;
- test_object_materials(ob, ob->data);
+ test_object_materials(bmain, ob, ob->data);
return ob;
}