[Bf-blender-cvs] [c55cf74] master: Fix T45088: Wrong tooltip for 'Object Transform' option of transfer data.

Bastien Montagne noreply at git.blender.org
Tue Jun 16 14:18:35 CEST 2015


Commit: c55cf743cdc68f4c1aeabba91d98a0bec96a62ef
Author: Bastien Montagne
Date:   Tue Jun 16 14:17:26 2015 +0200
Branches: master
https://developer.blender.org/rBc55cf743cdc68f4c1aeabba91d98a0bec96a62ef

Fix T45088: Wrong tooltip for 'Object Transform' option of transfer data.

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

M	source/blender/editors/object/object_data_transfer.c
M	source/blender/makesrna/intern/rna_modifier.c

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

diff --git a/source/blender/editors/object/object_data_transfer.c b/source/blender/editors/object/object_data_transfer.c
index b3b2299..d6a1694 100644
--- a/source/blender/editors/object/object_data_transfer.c
+++ b/source/blender/editors/object/object_data_transfer.c
@@ -531,7 +531,7 @@ void OBJECT_OT_data_transfer(wmOperatorType *ot)
 
 	/* Mapping options and filtering. */
 	RNA_def_boolean(ot->srna, "use_object_transform", true, "Object Transform",
-	                "Evaluate source and destination meshes in their respective object spaces");
+	                "Evaluate source and destination meshes in global space");
 	RNA_def_boolean(ot->srna, "use_max_distance", false, "Only Neighbor Geometry",
 	                "Source elements must be closer than given distance from destination one");
 	prop = RNA_def_float(ot->srna, "max_distance", 1.0f, 0.0f, FLT_MAX, "Max Distance",
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 2b3062f..087db2b 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -4307,7 +4307,7 @@ static void rna_def_modifier_datatransfer(BlenderRNA *brna)
 	RNA_def_property_update(prop, 0, "rna_Modifier_dependency_update");
 
 	prop = RNA_def_boolean(srna, "use_object_transform", true, "Object Transform",
-	                       "Evaluate source and destination meshes in their respective object spaces");
+	                       "Evaluate source and destination meshes in global space");
 	RNA_def_property_boolean_sdna(prop, NULL, "flags", MOD_DATATRANSFER_OBSRC_TRANSFORM);
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");




More information about the Bf-blender-cvs mailing list