[Bf-blender-cvs] [2ed6781] mesh-transfer-data: More UI name tweaking.

Bastien Montagne noreply at git.blender.org
Thu Nov 13 10:05:55 CET 2014


Commit: 2ed67813dd5b4f882ba877cfd20042315b76ed38
Author: Bastien Montagne
Date:   Thu Nov 13 09:18:15 2014 +0100
Branches: mesh-transfer-data
https://developer.blender.org/rB2ed67813dd5b4f882ba877cfd20042315b76ed38

More UI name tweaking.

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

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 ff49a8f..804dcb3 100644
--- a/source/blender/editors/object/object_data_transfer.c
+++ b/source/blender/editors/object/object_data_transfer.c
@@ -72,8 +72,8 @@ static EnumPropertyItem DT_layer_items[] = {
 #endif
 	{DT_DATA_BWEIGHT_VERT, "BEVEL_WEIGHT_VERT", 0, "Bevel Weight", "Transfer bevel weights"},
 	{0, "", 0, "Edge Data", ""},
-	{DT_DATA_SHARP_EDGE, "SHARP_EDGE", 0, "Sharp", "Transfer sharp flag"},
-	{DT_DATA_SEAM, "SEAM", 0, "Seam", "Transfer UV seam flag"},
+	{DT_DATA_SHARP_EDGE, "SHARP_EDGE", 0, "Sharp", "Transfer sharp mark"},
+	{DT_DATA_SEAM, "SEAM", 0, "UV Seam", "Transfer UV seam mark"},
 	{DT_DATA_CREASE, "CREASE", 0, "Subsurf Crease", "Transfer crease values"},
 	{DT_DATA_BWEIGHT_EDGE, "BEVEL_WEIGHT_EDGE", 0, "Bevel Weight", "Transfer bevel weights"},
 	{DT_DATA_FREESTYLE_EDGE, "FREESTYLE_EDGE", 0, "Freestyle Mark", "Transfer Freestyle edge mark"},
@@ -81,7 +81,7 @@ static EnumPropertyItem DT_layer_items[] = {
 	{DT_DATA_VCOL, "VCOL", 0, "VCol", "Vertex (face corners) colors"},
 	{0, "", 0, "Face Data", ""},
 	{DT_DATA_UV, "UV", 0, "UVs", "Transfer UV layers"},
-	{DT_DATA_SHARP_FACE, "SMOOTH", 0, "Smooth", "Transfer flat/smooth flag"},
+	{DT_DATA_SHARP_FACE, "SMOOTH", 0, "Smooth", "Transfer flat/smooth mark"},
 	{DT_DATA_FREESTYLE_FACE, "FREESTYLE_FACE", 0, "Freestyle Mark", "Transfer Freestyle face mark"},
 	{0, NULL, 0, NULL, NULL}
 };
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index df8b964..6a68a70 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -4015,8 +4015,8 @@ static void rna_def_modifier_datatransfer(BlenderRNA *brna)
 #endif
 
 	static EnumPropertyItem DT_layer_edge_items[] = {
-		{DT_DATA_SHARP_EDGE, "SHARP_EDGE", 0, "Sharp", "Transfer sharp flag"},
-		{DT_DATA_SEAM, "SEAM", 0, "Seam", "Transfer UV seam flag"},
+		{DT_DATA_SHARP_EDGE, "SHARP_EDGE", 0, "Sharp", "Transfer sharp mark"},
+		{DT_DATA_SEAM, "SEAM", 0, "UV Seam", "Transfer UV seam mark"},
 		{DT_DATA_CREASE, "CREASE", 0, "Subsurf Crease", "Transfer crease values"},
 		{DT_DATA_BWEIGHT_EDGE, "BEVEL_WEIGHT_EDGE", 0, "Bevel Weight", "Transfer bevel weights"},
 		{DT_DATA_FREESTYLE_EDGE, "FREESTYLE_EDGE", 0, "Freestyle Mark", "Transfer Freestyle edge mark"},
@@ -4032,7 +4032,7 @@ static void rna_def_modifier_datatransfer(BlenderRNA *brna)
 	};
 
 	static EnumPropertyItem DT_layer_poly_items[] = {
-		{DT_DATA_SHARP_FACE, "SMOOTH", 0, "Smooth", "Transfer flat/smooth flag"},
+		{DT_DATA_SHARP_FACE, "SMOOTH", 0, "Smooth", "Transfer flat/smooth mark"},
 		{DT_DATA_FREESTYLE_FACE, "FREESTYLE_FACE", 0, "Freestyle Mark", "Transfer Freestyle face mark"},
 		{0, NULL, 0, NULL, NULL}
 	};




More information about the Bf-blender-cvs mailing list