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:
authorCampbell Barton <ideasman42@gmail.com>2013-03-16 20:11:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-16 20:11:50 +0400
commit8a4a034325b856c56de992e58ed1aef287961e73 (patch)
tree3769005eaf2909ceae30c621b2837956e7d1a68c /release/scripts/startup
parenta38dbb5eac43ea980225b21f9d9713b8b28d9781 (diff)
patch [#34634] Select vertices without a group
from Kevin Mackay (yakca)
Diffstat (limited to 'release/scripts/startup')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 29d14097b8c..05acc26c011 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -580,6 +580,7 @@ class VIEW3D_MT_select_edit_mesh(Menu):
layout.separator()
+ layout.operator("mesh.select_ungrouped", text="Ungrouped Verts")
layout.operator("mesh.select_random", text="Random")
layout.operator("mesh.select_nth")
layout.operator("mesh.edges_select_sharp", text="Sharp Edges")
@@ -704,6 +705,10 @@ class VIEW3D_MT_select_edit_lattice(Menu):
layout.operator("lattice.select_all").action = 'TOGGLE'
layout.operator("lattice.select_all", text="Inverse").action = 'INVERT'
+ layout.separator()
+
+ layout.operator("lattice.select_ungrouped", text="Ungrouped Verts")
+
class VIEW3D_MT_select_edit_armature(Menu):
bl_label = "Select"
@@ -770,6 +775,10 @@ class VIEW3D_MT_select_paint_mask_vertex(Menu):
layout.operator("paint.vert_select_all").action = 'TOGGLE'
layout.operator("paint.vert_select_all", text="Inverse").action = 'INVERT'
+ layout.separator()
+
+ layout.operator("paint.vert_select_ungrouped", text="Ungrouped Verts")
+
# ********** Object menu **********