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>2018-04-25 08:12:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-25 08:12:34 +0300
commit6a9d215ad50aedb520ef41302b6fade4db278610 (patch)
tree3d56ace99002ced36ab4e1de2baf879ac2484078 /release/scripts/startup/bl_ui/space_view3d_toolbar.py
parent64e3051ebe5b620b588a342d69a8b80d92715a65 (diff)
UI: remove mesh panel
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d_toolbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py50
1 files changed, 0 insertions, 50 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index ed05432977a..e7758e2c4ef 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -104,55 +104,6 @@ class VIEW3D_PT_tools_object(View3DPanel, Panel):
# ********** default tools for editmode_mesh ****************
-class VIEW3D_PT_tools_meshedit(View3DPanel, Panel):
- bl_category = "Tools"
- bl_context = "mesh_edit"
- bl_label = "Mesh Tools"
-
- def draw(self, context):
- layout = self.layout
-
- col = layout.column(align=True)
- col.label(text="Deform:")
- row = col.row(align=True)
- row.operator("transform.edge_slide", text="Slide Edge")
- row.operator("transform.vert_slide", text="Vertex")
- col.operator("mesh.vertices_smooth")
- col.operator("transform.vertex_random")
-
- col = layout.column(align=True)
- col.label(text="Add:")
-
- col.menu("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.inset", text="Inset Faces")
- col.operator("mesh.edge_face_add")
- col.operator("mesh.subdivide")
- col.operator("mesh.loopcut_slide")
- col.operator("mesh.offset_edge_loops_slide")
- col.operator("mesh.duplicate_move", text="Duplicate")
- row = col.row(align=True)
- row.operator("mesh.spin")
- row.operator("mesh.screw")
-
- row = col.row(align=True)
- props = row.operator("mesh.knife_tool", text="Knife")
- props.use_occlude_geometry = True
- props.only_selected = False
- props = row.operator("mesh.knife_tool", text="Select")
- props.use_occlude_geometry = False
- props.only_selected = True
- col.operator("mesh.knife_project")
- col.operator("mesh.bisect")
-
- col = layout.column(align=True)
- col.label(text="Remove:")
- col.menu("VIEW3D_MT_edit_mesh_delete")
- col.operator_menu_enum("mesh.merge", "type")
- col.operator("mesh.remove_doubles")
-
-
class VIEW3D_PT_tools_meshedit_options(View3DPanel, Panel):
bl_category = "Options"
bl_context = "mesh_edit"
@@ -1581,7 +1532,6 @@ class VIEW3D_PT_tools_history(View3DPanel, Panel):
classes = (
VIEW3D_PT_tools_object,
- VIEW3D_PT_tools_meshedit,
VIEW3D_PT_tools_meshedit_options,
VIEW3D_PT_tools_curveedit,
VIEW3D_PT_tools_curveedit_options_stroke,