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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/editors/space_view3d/view3d_cursor_snap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_cursor_snap.c b/source/blender/editors/space_view3d/view3d_cursor_snap.c
index af3425111a3..27a90e04175 100644
--- a/source/blender/editors/space_view3d/view3d_cursor_snap.c
+++ b/source/blender/editors/space_view3d/view3d_cursor_snap.c
@@ -714,6 +714,7 @@ static void v3d_cursor_snap_update(V3DSnapCursorState *state,
float *co_depth = snap_elem ? co : scene->cursor.location;
snap_elem &= ~data_intern->snap_elem_hidden;
if (snap_elem == 0) {
+ RegionView3D *rv3d = region->regiondata;
float plane[4];
if (state->plane_depth != V3D_PLACE_DEPTH_CURSOR_VIEW) {
const float *plane_normal = omat[state->plane_axis];
@@ -721,7 +722,7 @@ static void v3d_cursor_snap_update(V3DSnapCursorState *state,
}
if ((state->plane_depth == V3D_PLACE_DEPTH_CURSOR_VIEW) ||
- !ED_view3d_win_to_3d_on_plane(region, plane, mval_fl, true, co)) {
+ !ED_view3d_win_to_3d_on_plane(region, plane, mval_fl, rv3d->is_persp, co)) {
ED_view3d_win_to_3d(v3d, region, co_depth, mval_fl, co);
}