Skip to content
Snippets Groups Projects
Commit 7805692b authored by Alan Odom's avatar Alan Odom Committed by Rune Morling
Browse files

PDT: Fix Command Maths Exit

Maths Operations did not exit on completion, resulting in possible selection errors.
parent 7597a8b6
Branches
Tags
No related merge requests found
...@@ -228,6 +228,7 @@ def command_run(self, context): ...@@ -228,6 +228,7 @@ def command_run(self, context):
if operation == "M": if operation == "M":
try: try:
command_maths(context, mode, pg, command[2:], mode) command_maths(context, mode, pg, command[2:], mode)
return
except PDT_MathsError: except PDT_MathsError:
return return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment