From 73df38a8791049dd96d176b1763d2c268163cef8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 18 Aug 2017 07:50:31 +1000 Subject: [PATCH] RNA: don't register manipulator properties by name Matching behavior for operators. --- source/blender/python/intern/bpy_manipulator_wrap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/python/intern/bpy_manipulator_wrap.c b/source/blender/python/intern/bpy_manipulator_wrap.c index 3aca0cda224..a4188698a5e 100644 --- a/source/blender/python/intern/bpy_manipulator_wrap.c +++ b/source/blender/python/intern/bpy_manipulator_wrap.c @@ -130,7 +130,7 @@ static void manipulator_properties_init(wmManipulatorType *wt) /* only call this so pyrna_deferred_register_class gives a useful error * WM_operatortype_append_ptr will call RNA_def_struct_identifier * later */ - RNA_def_struct_identifier(&BLENDER_RNA, wt->srna, wt->idname); + RNA_def_struct_identifier_no_struct_map(wt->srna, wt->idname); if (pyrna_deferred_register_class(wt->srna, py_class) != 0) { PyErr_Print(); /* failed to register operator props */