Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormeta-androcto <meta.androcto1@gmail.com>2019-09-10 14:32:41 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-09-10 14:32:41 +0300
commit5f3c703ea4b0f4651e4f28e682a91382a90a5596 (patch)
tree21f424fa03ec8cb6a020c09a3d216f7009dc156e /mesh_tools
parent63bf304511a55859c52eea9a54b3167d2b600e65 (diff)
mesh_tools:disable push/pull faces: T69694
Diffstat (limited to 'mesh_tools')
-rw-r--r--mesh_tools/__init__.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/mesh_tools/__init__.py b/mesh_tools/__init__.py
index bdecb1f7..e39b2a5e 100644
--- a/mesh_tools/__init__.py
+++ b/mesh_tools/__init__.py
@@ -42,7 +42,7 @@ if "bpy" in locals():
importlib.reload(mesh_filletplus)
importlib.reload(mesh_vertex_chamfer)
importlib.reload(random_vertices)
- importlib.reload(mesh_extrude_and_reshape)
+# importlib.reload(mesh_extrude_and_reshape)
importlib.reload(mesh_edge_roundifier)
importlib.reload(mesh_edgetools)
importlib.reload(mesh_edges_floor_plan)
@@ -56,7 +56,7 @@ else:
from . import mesh_filletplus
from . import mesh_vertex_chamfer
from . import random_vertices
- from . import mesh_extrude_and_reshape
+# from . import mesh_extrude_and_reshape
from . import mesh_edge_roundifier
from . import mesh_edgetools
from . import mesh_edges_floor_plan
@@ -889,8 +889,8 @@ class VIEW3D_MT_edit_mesh_tools(Menu):
layout.operator('mesh.fillet_plus', text="Fillet Edges")
layout.operator("mesh.face_inset_fillet",
text="Face Inset Fillet")
- layout.operator("mesh.extrude_reshape",
- text="Push/Pull Faces")
+# layout.operator("mesh.extrude_reshape",
+# text="Push/Pull Faces")
layout.operator("object.mextrude",
text="Multi Extrude")
layout.operator('mesh.split_solidify', text="Split Solidify")
@@ -975,8 +975,8 @@ class VIEW3D_PT_edit_mesh_tools(Panel):
row.operator("mesh.ext_cut_faces",
text="Cut Faces")
row = col_top.row(align=True)
- row.operator("mesh.extrude_reshape",
- text="Push/Pull Faces")
+# row.operator("mesh.extrude_reshape",
+# text="Push/Pull Faces")
row = col_top.row(align=True)
row.operator("object.mextrude",
text="Multi Extrude")
@@ -1127,7 +1127,7 @@ def register():
split_solidify.register()
mesh_vertex_chamfer.register()
random_vertices.register()
- mesh_extrude_and_reshape.register()
+# mesh_extrude_and_reshape.register()
mesh_edge_roundifier.register()
mesh_edgetools.register()
mesh_edges_floor_plan.register()
@@ -1152,7 +1152,7 @@ def unregister():
split_solidify.unregister()
mesh_vertex_chamfer.unregister()
random_vertices.unregister()
- mesh_extrude_and_reshape.unregister()
+# mesh_extrude_and_reshape.unregister()
mesh_edge_roundifier.unregister()
mesh_edgetools.unregister()
mesh_edges_floor_plan.unregister()