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>2021-06-22 10:18:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-22 10:18:28 +0300
commit1725bfc3cbc7b92896976ed1ed05e6b3f5b7c9a4 (patch)
treeb6baad30766efa6ea8b75c295addc71209da8b70 /release/scripts/startup/bl_ui/space_view3d.py
parent6a3bd04e4290b2fb262a71ec0009520833e41e33 (diff)
Cleanup: remove unused menu VIEW3D_MT_edit_mesh_edges_data
8aa17c5b12d734332c0af62a110524c4e523fb64 missed removing the menu definition when removing from the UI.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 266ca408157..6fa59e048c2 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -4014,38 +4014,6 @@ class VIEW3D_MT_edit_mesh_vertices(Menu):
layout.operator("object.vertex_parent_set")
-class VIEW3D_MT_edit_mesh_edges_data(Menu):
- bl_label = "Edge Data"
-
- def draw(self, _context):
- layout = self.layout
-
- layout.operator_context = 'INVOKE_REGION_WIN'
-
- layout.operator("transform.edge_crease")
- layout.operator("transform.edge_bevelweight")
-
- layout.separator()
-
- layout.operator("mesh.mark_seam").clear = False
- layout.operator("mesh.mark_seam", text="Clear Seam").clear = True
-
- layout.separator()
-
- layout.operator("mesh.mark_sharp")
- layout.operator("mesh.mark_sharp", text="Clear Sharp").clear = True
-
- layout.operator("mesh.mark_sharp", text="Mark Sharp from Vertices").use_verts = True
- props = layout.operator("mesh.mark_sharp", text="Clear Sharp from Vertices")
- props.use_verts = True
- props.clear = True
-
- layout.separator()
-
- layout.operator("mesh.mark_freestyle_edge").clear = False
- layout.operator("mesh.mark_freestyle_edge", text="Clear Freestyle Edge").clear = True
-
-
class VIEW3D_MT_edit_mesh_edges(Menu):
bl_label = "Edge"
@@ -7606,7 +7574,6 @@ classes = (
VIEW3D_MT_edit_mesh_extrude,
VIEW3D_MT_edit_mesh_vertices,
VIEW3D_MT_edit_mesh_edges,
- VIEW3D_MT_edit_mesh_edges_data,
VIEW3D_MT_edit_mesh_faces,
VIEW3D_MT_edit_mesh_faces_data,
VIEW3D_MT_edit_mesh_normals,