[Bf-extensions-cvs] [870571b] master: partial fix for reorder splines T39664 Thanks Joshua Leung (aligorith)

meta-androcto noreply at git.blender.org
Thu Oct 15 13:55:39 CEST 2015


Commit: 870571b1073897430f85066d2cda08adad5e97b3
Author: meta-androcto
Date:   Thu Oct 15 22:55:17 2015 +1100
Branches: master
https://developer.blender.org/rBA870571b1073897430f85066d2cda08adad5e97b3

partial fix for reorder splines
T39664
Thanks Joshua Leung (aligorith)

===================================================================

M	mesh_bsurfaces.py

===================================================================

diff --git a/mesh_bsurfaces.py b/mesh_bsurfaces.py
index e5fb239..a6a6d52 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')



More information about the Bf-extensions-cvs mailing list