[Bf-blender-cvs] [85c38e7] master: Fixed wrong label and hint text in Collada exporter

Gaia Clary noreply at git.blender.org
Tue Mar 3 23:42:55 CET 2015


Commit: 85c38e73895eb9de211cabc527ca41bb3e3c8e8f
Author: Gaia Clary
Date:   Tue Mar 3 23:42:17 2015 +0100
Branches: master
https://developer.blender.org/rB85c38e73895eb9de211cabc527ca41bb3e3c8e8f

Fixed wrong label and hint text in Collada exporter

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

M	source/blender/editors/io/io_collada.c

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

diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c
index 491152b..93e9a20 100644
--- a/source/blender/editors/io/io_collada.c
+++ b/source/blender/editors/io/io_collada.c
@@ -327,11 +327,11 @@ void WM_OT_collada_export(wmOperatorType *ot)
 	                "Only export deforming bones with armatures");
 
 
-	RNA_def_boolean(ot->srna, "active_uv_only", 0, "Only Active UV layer",
-	                "Export textures assigned to the object UV maps");
+	RNA_def_boolean(ot->srna, "active_uv_only", 0, "Only Selected UV Map",
+	                "Export only the selected UV Map");
 
 	RNA_def_boolean(ot->srna, "include_uv_textures", 0, "Include UV Textures",
-	                "Export textures assigned to the object UV maps");
+	                "Export textures assigned to the object UV Maps");
 
 	RNA_def_boolean(ot->srna, "include_material_textures", 0, "Include Material Textures",
 	                "Export textures assigned to the object Materials");




More information about the Bf-blender-cvs mailing list