Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjim man <jimman2003>2021-08-26 13:55:56 +0300
committerJacques Lucke <mail@jlucke.com>2021-08-26 13:56:20 +0300
commit64eeb14bf27dd64074cedaae02c00a2227849152 (patch)
treefee74f4c32b3db017f3627338cd2165cd26f9bdb
parentb701b514de3671376de790358b2562214b964895 (diff)
Node Wrangler: remove unnecessary code
Differential Revision: https://developer.blender.org/D12076
-rw-r--r--node_wrangler.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/node_wrangler.py b/node_wrangler.py
index 4b77d109..68573302 100644
--- a/node_wrangler.py
+++ b/node_wrangler.py
@@ -734,14 +734,11 @@ def autolink(node1, node2, links):
def node_at_pos(nodes, context, event):
- nodes_near_mouse = []
nodes_under_mouse = []
target_node = None
store_mouse_cursor(context, event)
x, y = context.space_data.cursor_location
- x = x
- y = y
# Make a list of each corner (and middle of border) for each node.
# Will be sorted to find nearest point and thus nearest node