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>2010-08-17 21:04:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-17 21:04:49 +0400
commitd08ba14bd217376d868d44ab281c789ae92aece5 (patch)
tree5791d211ff302ce80c0965cbe363d9917f419566 /mesh_surface_sketch.py
parentae93f3ea37ce1c5e98515fe128b162f507e4dcfc (diff)
update for rna changes
Diffstat (limited to 'mesh_surface_sketch.py')
-rw-r--r--mesh_surface_sketch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesh_surface_sketch.py b/mesh_surface_sketch.py
index 731d9833..1d5a7de8 100644
--- a/mesh_surface_sketch.py
+++ b/mesh_surface_sketch.py
@@ -771,8 +771,8 @@ class GPENCIL_OT_SURFSK_strokes_to_curves(bpy.types.Operator):
curve_crv = ob_gp_strokes.data
bpy.ops.curve.spline_type_set(type="BEZIER")
bpy.ops.curve.handle_type_set(type="AUTOMATIC")
- bpy.data.curves[curve_crv.name].draw_handles = False
- bpy.data.curves[curve_crv.name].draw_normals = False
+ bpy.data.curves[curve_crv.name].show_handles = False
+ bpy.data.curves[curve_crv.name].show_normal_face = False
def invoke (self, context, event):