[Bf-extensions-cvs] [876a90a] master: bsurfaces: fix for undo, fix for u, v resolution

meta-androcto noreply at git.blender.org
Thu Aug 11 03:55:19 CEST 2016


Commit: 876a90a1c8a1eda83b9b7c5e881223dacab45b53
Author: meta-androcto
Date:   Thu Aug 11 11:54:50 2016 +1000
Branches: master
https://developer.blender.org/rBA876a90a1c8a1eda83b9b7c5e881223dacab45b53

bsurfaces: fix for undo, fix for u,v resolution

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

M	mesh_bsurfaces.py

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

diff --git a/mesh_bsurfaces.py b/mesh_bsurfaces.py
index a6a6d52..7e7aaed 100644
--- a/mesh_bsurfaces.py
+++ b/mesh_bsurfaces.py
@@ -2861,7 +2861,7 @@ class GPENCIL_OT_SURFSK_add_surface(bpy.types.Operator):
 
 
     def execute(self, context):
-        self.initial_global_undo_state = bpy.context.user_preferences.edit.use_global_undo
+#        self.initial_global_undo_state = bpy.context.user_preferences.edit.use_global_undo
 
         bpy.context.user_preferences.edit.use_global_undo = False
 
@@ -2967,12 +2967,12 @@ class GPENCIL_OT_SURFSK_add_surface(bpy.types.Operator):
         self.loops_on_strokes = bpy.context.scene.SURFSK_loops_on_strokes
         self.keep_strokes = bpy.context.scene.SURFSK_keep_strokes
 
-        self.edges_U = 10
+        self.edges_U = 5
 
         if self.loops_on_strokes:
-            self.edges_V = 3
+            self.edges_V = 1
         else:
-            self.edges_V = 10
+            self.edges_V = 5
 
         self.is_fill_faces = False



More information about the Bf-extensions-cvs mailing list