From 7fc7e325efbb1ccab181e32873f3ad49ed42755d Mon Sep 17 00:00:00 2001 From: Antonioya Date: Fri, 29 Mar 2019 11:58:28 +0100 Subject: Fix T63082: Outliner allows assign grease pencil materials to mesh The grease pencil materials only can be assigned to objects of grease pencil type. --- source/blender/editors/space_outliner/outliner_dragdrop.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender/editors/space_outliner') diff --git a/source/blender/editors/space_outliner/outliner_dragdrop.c b/source/blender/editors/space_outliner/outliner_dragdrop.c index 77821ec0990..647fdeccb40 100644 --- a/source/blender/editors/space_outliner/outliner_dragdrop.c +++ b/source/blender/editors/space_outliner/outliner_dragdrop.c @@ -649,6 +649,11 @@ static int material_drop_invoke(bContext *C, wmOperator *UNUSED(op), const wmEve return OPERATOR_CANCELLED; } + /* only drop grease pencil material on grease pencil objects */ + if ((ma->gp_style != NULL) && (ob->type != OB_GPENCIL)) { + return OPERATOR_CANCELLED; + } + assign_material(bmain, ob, ma, ob->totcol + 1, BKE_MAT_ASSIGN_USERPREF); WM_event_add_notifier(C, NC_SPACE | ND_SPACE_VIEW3D, CTX_wm_view3d(C)); -- cgit v1.2.3