this patch makes Amaranth Toolset check the editor type before selecting the node under cursor.
Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Hi, thanks for the patch.
Is your patch ready for the review? If so, add @pablovazquez as a reviewer
Comment Actions
Thanks for the report and the patch!
I went with a different approach, instead of checking for the poll in the invoke, I added an actual poll to the operator that checks if there's an active node:
@classmethod def poll(cls, context): return context.active_node is not None
The fix is in: rBAb87642