UI: No Default Icon for Small Python Confirmations #119489

Merged
Harley Acheson merged 1 commits from Harley/blender:PyConfirmIcon into main 2024-03-14 21:45:16 +01:00
1 changed files with 1 additions and 0 deletions

View File

@ -952,6 +952,7 @@ void RNA_api_wm(StructRNA *srna)
parm = RNA_def_property(func, "icon", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_items(parm, rna_operator_popup_icon_items);
RNA_def_property_enum_default(parm, ALERT_ICON_NONE);
RNA_def_property_ui_text(parm, "Icon", "Optional icon displayed in the dialog");
api_ui_item_common_translation(func);