Fix for #36739: Delete new nodes added via the Add menu or toolbar if the subsequent transform operator is cancelled. This prevents ugly situations where nodes stick "under" the toolbar after clicking a

wrong button.

Works by adding a flag to transform operators "remove_on_cancel". This is currently only used for node transforms, the idea is that if set, the operator will remove the transformed elements when it is
cancelled. It's not possible to do that in the original NODE_OT_add_node operator, because transform is modal and there is no way of reacting to a cancel outside of the transform itself (previous attempt
used a macro operator, but that also doesn't work because subsequent operators don't get executed if the previous transform cancels).
This commit is contained in:
Lukas Toenne
2013-09-17 13:07:48 +00:00
parent 40b5b66527
commit 29b546fe7f
6 changed files with 33 additions and 3 deletions

View File

@@ -123,7 +123,8 @@ class NodeAddOperator():
result = self.execute(context)
if self.use_transform and ('FINISHED' in result):
bpy.ops.transform.translate('INVOKE_DEFAULT')
# removes the node again if transform is cancelled
bpy.ops.transform.translate('INVOKE_DEFAULT', remove_on_cancel = True)
return result