diff --git a/source/blender/editors/transform/transform_snap_object.c b/source/blender/editors/transform/transform_snap_object.c index 67e596dcca9..6c62c091a78 100644 --- a/source/blender/editors/transform/transform_snap_object.c +++ b/source/blender/editors/transform/transform_snap_object.c @@ -2408,12 +2408,10 @@ bool ED_transform_snap_object_project_view3d_ex( return false; } - float ray_end_dist = depth_get(ray_end, ray_start, ray_normal); + float ray_depth_fallback; if (ray_depth == NULL) { - ray_depth = &ray_end_dist; - } - else if (*ray_depth > ray_end_dist) { - *ray_depth = ray_end_dist; + ray_depth_fallback = BVH_RAYCAST_DIST_MAX; + ray_depth = &ray_depth_fallback; } if (snap_to == SCE_SNAP_MODE_FACE) {