Fix: Unable to select left and right in set handle type node

The "enum" RNA flag was missing.
This commit is contained in:
Hans Goudey 2021-10-04 11:10:08 -05:00
parent f2c896a9ad
commit 301ee97b93
1 changed files with 1 additions and 0 deletions

View File

@ -9667,6 +9667,7 @@ static void def_geo_curve_set_handles(StructRNA *srna)
prop = RNA_def_property(srna, "mode", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_items(prop, rna_node_geometry_curve_handle_side_items);
RNA_def_property_ui_text(prop, "Mode", "Whether to update left and right handles");
RNA_def_property_flag(prop, PROP_ENUM_FLAG);
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update");
}