From d3eda2e271c00c7204a57e8106164e923c2f4089 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 11 May 2022 21:10:14 +1000 Subject: Fix T98039: Node Wrangler node preview no longer working Update for changes in Blender. --- amaranth/node_editor/display_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'amaranth') diff --git a/amaranth/node_editor/display_image.py b/amaranth/node_editor/display_image.py index 77b081b2..81048b0c 100644 --- a/amaranth/node_editor/display_image.py +++ b/amaranth/node_editor/display_image.py @@ -39,7 +39,7 @@ class AMTH_NODE_OT_show_active_node_image(bpy.types.Operator): def invoke(self, context, event): mlocx = event.mouse_region_x mlocy = event.mouse_region_y - select_node = bpy.ops.node.select(mouse_x=mlocx, mouse_y=mlocy, extend=False) + select_node = bpy.ops.node.select(location=(mlocx, mlocy), extend=False) if 'FINISHED' in select_node: # Only run if we're clicking on a node get_addon = "amaranth" in context.preferences.addons.keys() -- cgit v1.2.3