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:
authorAlan Odom <clockmender@icloud.com>2020-01-29 18:44:41 +0300
committerRune Morling <ermo.blender.org@spammesenseless.net>2020-02-01 18:42:16 +0300
commit7805692b57fac260e8738e26d935c5e229e9875c (patch)
treec67f8942b644cb953b1552f476d9c365c3a4ea97 /precision_drawing_tools
parent7597a8b66d4562ef1bb8c8f648b692202ebffc30 (diff)
PDT: Fix Command Maths Exit
Maths Operations did not exit on completion, resulting in possible selection errors.
Diffstat (limited to 'precision_drawing_tools')
-rw-r--r--precision_drawing_tools/pdt_command.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/precision_drawing_tools/pdt_command.py b/precision_drawing_tools/pdt_command.py
index d941dc2a..0776feb8 100644
--- a/precision_drawing_tools/pdt_command.py
+++ b/precision_drawing_tools/pdt_command.py
@@ -228,6 +228,7 @@ def command_run(self, context):
if operation == "M":
try:
command_maths(context, mode, pg, command[2:], mode)
+ return
except PDT_MathsError:
return