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:
Diffstat (limited to 'curve_tools/curves.py')
-rw-r--r--curve_tools/curves.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/curve_tools/curves.py b/curve_tools/curves.py
index da0b1398..202487de 100644
--- a/curve_tools/curves.py
+++ b/curve_tools/curves.py
@@ -357,12 +357,12 @@ class BezierSpline:
return [newSpline1, newSpline2]
- def Join(self, spline2, mode = 'At midpoint'):
- if mode == 'At midpoint':
+ def Join(self, spline2, mode = 'At_midpoint'):
+ if mode == 'At_midpoint':
self.JoinAtMidpoint(spline2)
return
- if mode == 'Insert segment':
+ if mode == 'Insert_segment':
self.JoinInsertSegment(spline2)
return