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:
authorGeoffrey Bantle <hairbat@yahoo.com>2006-05-11 23:46:26 +0400
committerGeoffrey Bantle <hairbat@yahoo.com>2006-05-11 23:46:26 +0400
commit3e3b1cc1641223a9925c1611a9e616d281f02973 (patch)
tree022f5e05ccfd54d005a2640c7908e4deb1e5f7d0 /source/blender/src/toolbox.c
parentede20c166a4fcaedaaf5c5392d00e3a99ecc8ad2 (diff)
-> New menu and toolbox entries
Added the following to the 'select' menu of 3d header and toolbox while in mesh editmode: ' -Path Select -Edge Loop Multi-Select -Edge Ring Multi-Select -Loop to Region -Region to Loop Also added Collapse Faces and Collapse Edges to menu and toolbox as well as made them available in selection modes other than face exclusive and edge exclusive.
Diffstat (limited to 'source/blender/src/toolbox.c')
-rw-r--r--source/blender/src/toolbox.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/src/toolbox.c b/source/blender/src/toolbox.c
index dc57e325d13..c0700de8ad2 100644
--- a/source/blender/src/toolbox.c
+++ b/source/blender/src/toolbox.c
@@ -863,6 +863,11 @@ static TBitem tb_mesh_select[]= {
{ 0, "Less|Ctrl NumPad -", 8, NULL},
{ 0, "SEPR", 0, NULL},
{ 0, "Linked Vertices|Ctrl L", 4, NULL},
+{ 0, "Path Select|W Alt 7", 16, NULL},
+{ 0, "Edge Loop Select|Ctrl E 6", 17, NULL},
+{ 0, "Edge Ring Select|Ctrl E 7", 18, NULL},
+{ 0, "Loop to Region|Ctrl E 8", 19, NULL},
+{ 0, "Region to Loop|Ctrl E 9", 20, NULL},
{ -1, "", 0, do_view3d_select_meshmenu}};
@@ -934,6 +939,7 @@ static TBitem tb_mesh_edit_vertex[]= {
static TBitem tb_mesh_edit_edge[]= {
{ 0, "Make Edge/Face|F", 5, NULL},
+{ 0, "Collapse Edges|Alt M", 14, NULL},
{ 0, "SEPR", 0, NULL},
{ 0, "Bevel|W, Alt 2", 6, NULL},
{ 0, "Loop Subdivide|Ctrl R", 4, NULL},
@@ -959,6 +965,7 @@ static TBitem tb_mesh_edit_face[]= {
{ 0, "Make Edge/Face|F", 5, NULL},
{ 0, "Fill|Shift F", 0, NULL},
{ 0, "Beautify Fill|Alt F", 1, NULL},
+{ 0, "Collapse Faces|Alt M", 8, NULL},
{ 0, "SEPR", 0, NULL},
{ 0, "Convert to Triangles|Ctrl T", 2, NULL},
{ 0, "Convert to Quads|Alt J", 3, NULL},