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:
authorCampbell Barton <ideasman42@gmail.com>2012-12-27 14:56:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-27 14:56:18 +0400
commitf47c6a57d96441aaecee1565dff3cf41fe452285 (patch)
tree968541a7b2c1a33ce68068b150bfc897eb359320 /mesh_looptools.py
parentbe1edb7e389d7762d18449b918a826f0ca6fef08 (diff)
svn merge . -r4105:4104
add back bevel tool menu, it no longer crashes.
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 7b1509f0..20c9b673 100644
--- a/mesh_looptools.py
+++ b/mesh_looptools.py
@@ -3619,12 +3619,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")
@@ -3648,7 +3648,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()
@@ -3757,7 +3757,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()