Commit: c721ef5fd696fecfd51687f296ecc6e0065e5651
Author: Daniel Salazar
Date:   Mon Nov 17 07:57:26 2014 -0600
Branches: master
https://developer.blender.org/rBc721ef5fd696fecfd51687f296ecc6e0065e5651

Slight improvements to vgroup tooltips

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

M       release/scripts/startup/bl_ui/properties_data_mesh.py
M       source/blender/editors/object/object_vgroup.c

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

diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py 
b/release/scripts/startup/bl_ui/properties_data_mesh.py
index 5a59a23..7178e17 100644
--- a/release/scripts/startup/bl_ui/properties_data_mesh.py
+++ b/release/scripts/startup/bl_ui/properties_data_mesh.py
@@ -29,7 +29,7 @@ class MESH_MT_vertex_group_specials(Menu):
     def draw(self, context):
         layout = self.layout
 
-        layout.operator("object.vertex_group_sort", 
icon='SORTALPHA').sort_type = "NAME"
+        layout.operator("object.vertex_group_sort", icon='SORTALPHA', 
text="Sort by Name").sort_type = "NAME"
         layout.operator("object.vertex_group_sort", icon='ARMATURE_DATA', 
text="Sort by Bone Hierarchy").sort_type = "BONE_HIERARCHY"
         layout.operator("object.vertex_group_copy", icon='COPY_ID')
         layout.operator("object.vertex_group_copy_to_linked", icon='LINK_AREA')
diff --git a/source/blender/editors/object/object_vgroup.c 
b/source/blender/editors/object/object_vgroup.c
index 49c7777..b7f121d 100644
--- a/source/blender/editors/object/object_vgroup.c
+++ b/source/blender/editors/object/object_vgroup.c
@@ -3934,7 +3934,7 @@ void OBJECT_OT_vertex_group_mirror(wmOperatorType *ot)
        /* identifiers */
        ot->name = "Mirror Vertex Group";
        ot->idname = "OBJECT_OT_vertex_group_mirror";
-       ot->description = "Mirror all vertex groups, flip weights and/or names, 
editing only selected vertices, "
+       ot->description = "Mirror vertex group, flip weights and/or names, 
editing only selected vertices, "
                          "flipping when both sides are selected otherwise copy 
from unselected";
 
        /* api callbacks */

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to