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>2015-10-15 14:55:17 +0300
committermeta-androcto <meta.androcto1@gmail.com>2015-10-15 14:55:17 +0300
commit870571b1073897430f85066d2cda08adad5e97b3 (patch)
tree59af0c0fba47e72d98b1afc37c037c4efcff6b05
parent44cc56c92796cecb93506a33afff1c48f1ac39ee (diff)
partial fix for reorder splines
T39664 Thanks Joshua Leung (aligorith)
-rw-r--r--mesh_bsurfaces.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesh_bsurfaces.py b/mesh_bsurfaces.py
index e5fb239c..a6a6d52f 100644
--- a/mesh_bsurfaces.py
+++ b/mesh_bsurfaces.py
@@ -21,7 +21,7 @@ bl_info = {
"name": "Bsurfaces GPL Edition",
"author": "Eclectiel",
"version": (1, 5),
- "blender": (2, 63, 0),
+ "blender": (2, 76, 0),
"location": "View3D > EditMode > ToolShelf",
"description": "Modeling and retopology tool.",
"wiki_url": "http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.64/Bsurfaces_1.5",
@@ -94,7 +94,7 @@ class VIEW3D_PT_tools_SURFSK_curve(bpy.types.Panel):
row.separator()
col.operator("curve.surfsk_first_points", text="Set First Points")
col.operator("curve.switch_direction", text="Switch Direction")
-# col.operator("curve.surfsk_reorder_splines", text="Reorder Splines")
+ col.operator("curve.surfsk_reorder_splines", text="Reorder Splines")
@@ -3465,7 +3465,7 @@ class CURVE_OT_SURFSK_reorder_splines(bpy.types.Operator):
self.main_curve.data.splines[0].bezier_points[0].select_control_point = True
bpy.ops.object.editmode_toggle('INVOKE_REGION_WIN')
- bpy.ops.curve.separate('INVOKE_REGION_WIN')
+ bpy.ops.curve.separate('EXEC_REGION_WIN')
bpy.ops.object.editmode_toggle('INVOKE_REGION_WIN')