From c3207d88c2f0f475dd55035e3e19b82f051608bc Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Tue, 19 Jan 2021 18:12:42 +0100 Subject: 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 8b777ee6d69d4805c64756cf6a33db894160ce29. --- source/blender/makesrna/intern/rna_nodetree.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source/blender/makesrna/intern/rna_nodetree.c') diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c index 6480b80056c..1cd3593e4a4 100644 --- a/source/blender/makesrna/intern/rna_nodetree.c +++ b/source/blender/makesrna/intern/rna_nodetree.c @@ -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"); } -- cgit v1.2.3