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>2016-08-11 04:54:50 +0300
committermeta-androcto <meta.androcto1@gmail.com>2016-08-11 04:54:50 +0300
commit876a90a1c8a1eda83b9b7c5e881223dacab45b53 (patch)
treec16d2806151fae28f6e2e392523172a17ff8fb42
parenta36c5cd168d917da46b6a6e773153adfeacf0bf7 (diff)
bsurfaces: fix for undo, fix for u,v resolution
-rw-r--r--mesh_bsurfaces.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/mesh_bsurfaces.py b/mesh_bsurfaces.py
index a6a6d52f..7e7aaedb 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