From 71007dc1d65d6fff9410030f3610b141628de078 Mon Sep 17 00:00:00 2001 From: Antonioya Date: Tue, 28 Aug 2018 08:17:53 +0200 Subject: GP: Use custom api to get material --- source/blender/editors/gpencil/gpencil_data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/gpencil/gpencil_data.c') diff --git a/source/blender/editors/gpencil/gpencil_data.c b/source/blender/editors/gpencil/gpencil_data.c index 84706966c60..548294df388 100644 --- a/source/blender/editors/gpencil/gpencil_data.c +++ b/source/blender/editors/gpencil/gpencil_data.c @@ -507,7 +507,7 @@ static int gp_layer_duplicate_object_exec(bContext *C, wmOperator *op) * otherwise add the slot with the material */ Material *ma_src = give_current_material(ob_src, gps_src->mat_nr + 1); - int idx = BKE_object_material_slot_find_index(ob_dst, ma_src); + int idx = BKE_gpencil_get_material_index(ob_dst, ma_src); if (idx == 0) { BKE_object_material_slot_add(bmain, ob_dst); assign_material(bmain, ob_dst, ma_src, ob_dst->totcol, BKE_MAT_ASSIGN_USERPREF); -- cgit v1.2.3