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>2006-05-21 21:12:10 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-05-21 21:12:10 +0400
commit33c0ebbc8e7a899900738fb57ec3a6e58dc27249 (patch)
treed685a327e53b85d2d40ece9ae19a65e5dd8b27ab /source/blender/src/header_view3d.c
parent2f4b5dbab2b56d3a56f08d969b3816a3c1a6d682 (diff)
Intergrated select group editmode into the menus and re-shuffled the Mesh tool buttons to fit a threshold value in.
also changed the way areas/perimeter and lengths are compared so it will be indipendant of scale.
Diffstat (limited to 'source/blender/src/header_view3d.c')
-rw-r--r--source/blender/src/header_view3d.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/src/header_view3d.c b/source/blender/src/header_view3d.c
index 7ca4b4b1a55..f6d65b7affe 100644
--- a/source/blender/src/header_view3d.c
+++ b/source/blender/src/header_view3d.c
@@ -887,6 +887,9 @@ void do_view3d_select_meshmenu(void *arg, int event)
case 20: /* region to loop */
region_to_loop();
break;
+ case 21: /* Select grouped */
+ select_mesh_group_menu();
+ break;
}
allqueue(REDRAWVIEW3D, 0);
}
@@ -933,6 +936,9 @@ static uiBlock *view3d_select_meshmenu(void *arg_unused)
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1,
"Non-Triangles/Quads|Ctrl Alt Shift 5",
0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 13, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1,
+ "Group From Selection|Shift G",
+ 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 21, "");
uiDefBut(block, SEPR, 0, "", 0, yco-=6,
menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");