Skip to content

Commit

Permalink
sut_op: return CANCELLED
Browse files Browse the repository at this point in the history
Blender does not know "FINISHED WITH ERRORS"
  • Loading branch information
Viterkim authored Dec 30, 2020
1 parent c3bc95f commit 51e4e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operator/sut_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def execute(self, context):
sut_tool = context.scene.sut_tool

if not validate_collection_names(self, sut_tool):
return {'FINISHED WITH ERRORS'}
return {'CANCELLED'}

# Unhide the Greybox Collection
hide_collection_viewport(sut_tool.greybox_col_name, False)
Expand Down

0 comments on commit 51e4e13

Please sign in to comment.