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:
authorSpivak Vladimir (cwolf3d) <cwolf3d@gmail.com>2019-09-21 02:32:43 +0300
committerSpivak Vladimir (cwolf3d) <cwolf3d@gmail.com>2019-09-21 02:33:15 +0300
commit1eb9bec2155b6d0b5757568018fb1dc567b1f16d (patch)
treebed406a896cde0cc4a1c95b64a677618d9d9faa3 /curve_tools/PathFinder.py
parent4e69d972bd4fea632b75ac60b302672f6b289c4e (diff)
Curve Tools: Some bugs fix.
Diffstat (limited to 'curve_tools/PathFinder.py')
-rw-r--r--curve_tools/PathFinder.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/curve_tools/PathFinder.py b/curve_tools/PathFinder.py
index 4df49c41..ab11a4e7 100644
--- a/curve_tools/PathFinder.py
+++ b/curve_tools/PathFinder.py
@@ -271,14 +271,14 @@ class PathFinder(bpy.types.Operator):
bpy.ops.curve.delete(type='VERT')
return {'RUNNING_MODAL'}
+ elif event.alt and event.shift and event.type == 'LEFTMOUSE':
+ click(self, context, event)
+
elif event.alt and not event.shift and event.type == 'LEFTMOUSE':
remove_handler(self.handlers)
bpy.ops.curve.select_all(action='DESELECT')
click(self, context, event)
- elif event.alt and event.shift and event.type == 'LEFTMOUSE':
- click(self, context, event)
-
elif event.alt and event.type == 'RIGHTMOUSE':
remove_handler(self.handlers)
bpy.ops.curve.select_all(action='DESELECT')