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:
authorBrendon Murphy <meta.androcto1@gmail.com>2012-12-27 01:42:40 +0400
committerBrendon Murphy <meta.androcto1@gmail.com>2012-12-27 01:42:40 +0400
commit43f35007afa764147576aedd791772af60776412 (patch)
tree0b4763076de2d3ea5237f842489a51a8a09aea95 /mesh_looptools.py
parentfb1fbde1e7e11f5a5bf7393363d19d093b8b9d5d (diff)
disabling menu items 'Bridge' & 'Loft'
these crash blender instantly with no errors
Diffstat (limited to 'mesh_looptools.py')
-rw-r--r--mesh_looptools.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/mesh_looptools.py b/mesh_looptools.py
index 8f6c16f8..f909033d 100644
--- a/mesh_looptools.py
+++ b/mesh_looptools.py
@@ -3611,12 +3611,12 @@ class VIEW3D_MT_edit_mesh_looptools(bpy.types.Menu):
def draw(self, context):
layout = self.layout
- layout.operator("mesh.looptools_bridge", text="Bridge").loft = False
+# layout.operator("mesh.looptools_bridge", text="Bridge").loft = False
layout.operator("mesh.looptools_circle")
layout.operator("mesh.looptools_curve")
layout.operator("mesh.looptools_flatten")
layout.operator("mesh.looptools_gstretch")
- layout.operator("mesh.looptools_bridge", text="Loft").loft = True
+# layout.operator("mesh.looptools_bridge", text="Loft").loft = True
layout.operator("mesh.looptools_relax")
layout.operator("mesh.looptools_space")
@@ -3640,7 +3640,7 @@ class VIEW3D_PT_tools_looptools(bpy.types.Panel):
split.prop(lt, "display_bridge", text="", icon='DOWNARROW_HLT')
else:
split.prop(lt, "display_bridge", text="", icon='RIGHTARROW')
- split.operator("mesh.looptools_bridge", text="Bridge").loft = False
+# split.operator("mesh.looptools_bridge", text="Bridge").loft = False
# bridge - settings
if lt.display_bridge:
box = col.column(align=True).box().column()
@@ -3749,7 +3749,7 @@ class VIEW3D_PT_tools_looptools(bpy.types.Panel):
split.prop(lt, "display_loft", text="", icon='DOWNARROW_HLT')
else:
split.prop(lt, "display_loft", text="", icon='RIGHTARROW')
- split.operator("mesh.looptools_bridge", text="Loft").loft = True
+# split.operator("mesh.looptools_bridge", text="Loft").loft = True
# loft - settings
if lt.display_loft:
box = col.column(align=True).box().column()