Object Info: Fix tooltip for the transform space option

This was agreed outside the patch discussion. And it did not make into
the submitted code on 8b777ee6d6.
This commit is contained in:
Dalai Felinto 2021-01-19 18:12:42 +01:00
parent 05179a0ba4
commit c3207d88c2
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");
}