[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47548] branches/meshdata_transfer/source/ blender/editors/object/object_vgroup.c: Fixed naming from " single vertex group" to "active vertex group"

Ove Murberg Henriksen sorayasilvermoon at hotmail.com
Thu Jun 7 01:21:49 CEST 2012


Revision: 47548
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47548
Author:   cyborgmuppet
Date:     2012-06-06 23:21:45 +0000 (Wed, 06 Jun 2012)
Log Message:
-----------
Fixed naming from "single vertex group" to "active vertex group"

Modified Paths:
--------------
    branches/meshdata_transfer/source/blender/editors/object/object_vgroup.c

Modified: branches/meshdata_transfer/source/blender/editors/object/object_vgroup.c
===================================================================
--- branches/meshdata_transfer/source/blender/editors/object/object_vgroup.c	2012-06-06 23:01:42 UTC (rev 47547)
+++ branches/meshdata_transfer/source/blender/editors/object/object_vgroup.c	2012-06-06 23:21:45 UTC (rev 47548)
@@ -378,7 +378,7 @@
 /***********************Start transfer weight*********************************/
 
 typedef enum VertexGroupOption {
-	REPLACE_SINGLE_VERTEX_GROUP = 1,
+	REPLACE_ACTIVE_VERTEX_GROUP = 1,
 	REPLACE_ALL_VERTEX_GROUPS = 2
 } VertexGroupOption;
 
@@ -396,7 +396,7 @@
 } ReplaceOption;
 
 static EnumPropertyItem vertex_group_option_item[] = {
-	{REPLACE_SINGLE_VERTEX_GROUP, "REPLACE_SINGLE_VERTEX_GROUP", 1, "Single", "Transfer single vertex group from selected to active mesh."},
+	{REPLACE_ACTIVE_VERTEX_GROUP, "REPLACE_ACTIVE_VERTEX_GROUP", 1, "Active", "Transfer active vertex group from selected to active mesh."},
 	{REPLACE_ALL_VERTEX_GROUPS, "REPLACE_ALL_VERTEX_GROUPS", 1, "All", "Transfer all vertex groups from selected to active mesh."},
 	{0, NULL, 0, NULL, NULL}
 };
@@ -3043,7 +3043,7 @@
 		if (ob_act != ob_slc && ob_slc->defbase.first) {
 			switch (vertex_group_option) {
 
-				case REPLACE_SINGLE_VERTEX_GROUP:
+				case REPLACE_ACTIVE_VERTEX_GROUP:
 					ED_vgroup_transfer_weight(ob_act, ob_slc, BLI_findlink(&ob_slc->defbase, ob_slc->actdef - 1), scene, method_option, replace_option);
 					break;
 




More information about the Bf-blender-cvs mailing list