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:
authorCampbell Barton <ideasman42@gmail.com>2021-10-28 06:08:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-28 06:08:57 +0300
commitc647bd899f7de3c41ca10e0307c2e1b876d9a4bb (patch)
tree08e1a366e0c840b0a55bd4be2db0de66e2e1330a /source/blender
parenta2f0f982710d9606248bdd4b83033c57db143cf9 (diff)
parent16f468fb140770a9ffa277860efc8f2fad8183e5 (diff)
Merge branch 'blender-v3.0-release'
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_view3d/view3d_snap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_snap.c b/source/blender/editors/space_view3d/view3d_snap.c
index 55ec6652495..67b61ed77d8 100644
--- a/source/blender/editors/space_view3d/view3d_snap.c
+++ b/source/blender/editors/space_view3d/view3d_snap.c
@@ -615,7 +615,7 @@ static int snap_selected_to_cursor_exec(bContext *C, wmOperator *op)
const float *snap_target_global = scene->cursor.location;
const int pivot_point = scene->toolsettings->transform_pivot_point;
- if (snap_selected_to_location(C, snap_target_global, pivot_point, use_offset, true)) {
+ if (snap_selected_to_location(C, snap_target_global, use_offset, pivot_point, true)) {
return OPERATOR_CANCELLED;
}
return OPERATOR_FINISHED;