From ddae7cd966b3530eb45c8aa7e8fe0d7622df1af6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 20 Jan 2025 15:47:08 +1100 Subject: [PATCH] PyAPI: expose bpy.types.bpy_prop_collection_idprop Expose the IDProperty sub-class of `bpy.types.bpy_prop_collection`, needed for API doc generation but should have been exposed for completeness. --- source/blender/python/intern/bpy_rna.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/python/intern/bpy_rna.cc b/source/blender/python/intern/bpy_rna.cc index f1b653475eb..e35af082ace 100644 --- a/source/blender/python/intern/bpy_rna.cc +++ b/source/blender/python/intern/bpy_rna.cc @@ -8642,6 +8642,7 @@ PyObject *BPY_rna_types() &pyrna_prop_Type, &pyrna_prop_array_Type, &pyrna_prop_collection_Type, + &pyrna_prop_collection_idprop_Type, &pyrna_func_Type, };