Fix T40762: Python can't access macro values

This commit is contained in:
Campbell Barton 2015-05-13 05:25:26 +10:00
parent b01dd748b6
commit 3160740421
Notes: blender-bot 2023-02-14 20:06:26 +01:00
Referenced by issue blender/blender-addons#40762, Can't access actually used values of macro operator properties from Python
1 changed files with 5 additions and 0 deletions

View File

@ -1501,6 +1501,11 @@ static void rna_def_operator(BlenderRNA *brna)
RNA_def_property_flag(prop, PROP_REGISTER_OPTIONAL | PROP_ENUM_FLAG);
RNA_def_property_ui_text(prop, "Options", "Options for this operator type");
prop = RNA_def_property(srna, "macros", PROP_COLLECTION, PROP_NONE);
RNA_def_property_collection_sdna(prop, NULL, "macro", NULL);
RNA_def_property_struct_type(prop, "Macro");
RNA_def_property_ui_text(prop, "Macros", "");
RNA_api_operator(srna);
srna = RNA_def_struct(brna, "OperatorProperties", NULL);