WIP: uv-simple-select #1

Closed
Chris Blackbourn wants to merge 182 commits from uv-simple-select into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit dfc9d29a51 - Show all commits

View File

@ -148,7 +148,7 @@ static bool node_under_mouse_tweak(const bNodeTree &ntree, const float2 &mouse)
switch (node->type) { switch (node->type) {
case NODE_REROUTE: { case NODE_REROUTE: {
const float2 location = node_to_view(*node, {node->locx, node->locy}); const float2 location = node_to_view(*node, {node->locx, node->locy});
if (math::distance(mouse, location) < 24.0f) { if (math::distance_squared(mouse, location) < square_f(24.0f)) {
return true; return true;
} }
break; break;