From c011bbbdb9013ed8a6a42ae728ccdb018ff661cd Mon Sep 17 00:00:00 2001 From: William Reynish Date: Wed, 17 Feb 2010 09:33:58 +0000 Subject: [PATCH] Added separate entries for Extrude Region and Extrude Individual in the mesh toolbar. --- release/scripts/ui/space_view3d_toolbar.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 4613bfbbc89..c96fdc4daf0 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -99,7 +99,8 @@ class VIEW3D_PT_tools_meshedit(View3DPanel): col = layout.column(align=True) col.label(text="Add:") - col.operator("wm.call_menu", text="Extrude").name = "VIEW3D_MT_edit_mesh_extrude" + col.operator("view3d.edit_mesh_extrude_move_normal", text="Extrude Region") + col.operator("view3d.edit_mesh_extrude_individual_move", text="Extrude Individual") col.operator("mesh.subdivide") col.operator("mesh.loopcut_slide") col.operator("mesh.duplicate_move", text="Duplicate")