generic operator menu was searching for "type" and using the first enum property if it wasnt found.
this is too arbitrary and could break if roperty order is changed. store the property in the operator type that is to be used for menu and enum search func's. python function for searching operator enums on invoke. (just need dynamic python enums now) wm.invoke_search_popup(self)
This commit is contained in:
@@ -65,6 +65,16 @@ void operator_wrapper(wmOperatorType *ot, void *userdata)
|
||||
ot->srna= srna; /* restore */
|
||||
|
||||
operator_properties_init(ot);
|
||||
|
||||
{ /* XXX - not nice, set the first enum as searchable, should have a way for python to set */
|
||||
PointerRNA ptr;
|
||||
PropertyRNA *prop;
|
||||
|
||||
RNA_pointer_create(NULL, ot->srna, NULL, &ptr);
|
||||
prop = RNA_struct_find_property(&ptr, "type");
|
||||
if(prop)
|
||||
ot->prop= prop;
|
||||
}
|
||||
}
|
||||
|
||||
void macro_wrapper(wmOperatorType *ot, void *userdata)
|
||||
|
Reference in New Issue
Block a user