Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Salazar <zanqdo@gmail.com>2011-01-30 02:51:42 +0300
committerDaniel Salazar <zanqdo@gmail.com>2011-01-30 02:51:42 +0300
commit4d308dd921dd2aa5f79b4ed15a1573bd4c22bbfb (patch)
treec7617e5e0fa0cf1e83351696059b093bad99b68a /release
parentabf483b9470ac21c03302f9fd557318338824c04 (diff)
Added handy option to delete all vgroups in the dropdown menu
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_data_mesh.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/ui/properties_data_mesh.py b/release/scripts/ui/properties_data_mesh.py
index 52d886ff0a9..79e1ba2c6c1 100644
--- a/release/scripts/ui/properties_data_mesh.py
+++ b/release/scripts/ui/properties_data_mesh.py
@@ -33,6 +33,7 @@ class MESH_MT_vertex_group_specials(bpy.types.Menu):
layout.operator("object.vertex_group_copy_to_linked", icon='LINK_AREA')
layout.operator("object.vertex_group_copy_to_selected", icon='LINK_AREA')
layout.operator("object.vertex_group_mirror", icon='ARROW_LEFTRIGHT')
+ layout.operator("object.vertex_group_remove", icon='X', text="Delete All").all=True
class MESH_MT_shape_key_specials(bpy.types.Menu):