Merge remote-tracking branch 'origin/blender-v2.92-release'

This commit is contained in:
Dalai Felinto 2021-01-19 18:23:08 +01:00
commit b39ee69789
1 changed files with 2 additions and 3 deletions

View File

@ -8870,9 +8870,8 @@ static void def_geo_object_info(StructRNA *srna)
prop = RNA_def_property(srna, "transform_space", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_items(prop, rna_node_geometry_object_info_transform_space_items);
RNA_def_property_ui_text(prop,
"Transform Space",
"Determine the transformation applied to vector and geometry outputs");
RNA_def_property_ui_text(
prop, "Transform Space", "The transformation of the vector and geometry outputs");
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
}