[Bf-blender-cvs] [c3207d88c2f] blender-v2.92-release: Object Info: Fix tooltip for the transform space option

Dalai Felinto noreply at git.blender.org
Tue Jan 19 18:14:02 CET 2021


Commit: c3207d88c2f0f475dd55035e3e19b82f051608bc
Author: Dalai Felinto
Date:   Tue Jan 19 18:12:42 2021 +0100
Branches: blender-v2.92-release
https://developer.blender.org/rBc3207d88c2f0f475dd55035e3e19b82f051608bc

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.

===================================================================

M	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");
 }



More information about the Bf-blender-cvs mailing list