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:
authorGermano Cavalcante <germano.costa@ig.com.br>2021-11-09 17:09:49 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2021-11-09 17:26:45 +0300
commit9b2f2120163286bf08fa5ed341fa01eea8283dca (patch)
tree9473ebdade8f35b79a2521fd1227eb24ad51bf99
parent07a4338b3a3d05cc5202f0d550886a6a8f299429 (diff)
Fix T92939: Crash on drop when a curve is the active object
The active object was being set as the edited object even though it was not in edit mode.
-rw-r--r--source/blender/editors/space_view3d/view3d_cursor_snap.c2
1 files changed, 1 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 a4d7c60d906..bb387adb82e 100644
--- a/source/blender/editors/space_view3d/view3d_cursor_snap.c
+++ b/source/blender/editors/space_view3d/view3d_cursor_snap.c
@@ -692,7 +692,7 @@ static void v3d_cursor_snap_update(V3DSnapCursorState *state,
const int orient_index = BKE_scene_orientation_get_index(scene, SCE_ORIENT_DEFAULT);
const int pivot_point = scene->toolsettings->transform_pivot_point;
ED_transform_calc_orientation_from_type_ex(
- scene, view_layer, v3d, region->regiondata, ob, ob, orient_index, pivot_point, omat);
+ scene, view_layer, v3d, rv3d, ob, NULL, orient_index, pivot_point, omat);
if (state->use_plane_axis_auto) {
mat3_align_axis_to_v3(omat, state->plane_axis, rv3d->viewinv[2]);