[Bf-blender-cvs] [b8b9023d8cd] master: Fix drop of dimensionless objects in 3DView

Germano Cavalcante noreply at git.blender.org
Tue Oct 26 15:08:14 CEST 2021


Commit: b8b9023d8cd7e0be93f83533c37f50931a2a7c56
Author: Germano Cavalcante
Date:   Tue Oct 26 10:07:49 2021 -0300
Branches: master
https://developer.blender.org/rBb8b9023d8cd7e0be93f83533c37f50931a2a7c56

Fix drop of dimensionless objects in 3DView

The matrix and location were not being calculated in this case.

===================================================================

M	source/blender/editors/space_view3d/space_view3d.c

===================================================================

diff --git a/source/blender/editors/space_view3d/space_view3d.c b/source/blender/editors/space_view3d/space_view3d.c
index ccad1b8b552..8e61ff1765a 100644
--- a/source/blender/editors/space_view3d/space_view3d.c
+++ b/source/blender/editors/space_view3d/space_view3d.c
@@ -524,6 +524,7 @@ static void view3d_ob_drop_draw_activate(struct wmDropBox *drop, wmDrag *drag)
   }
 
   state = drop->draw_data = ED_view3d_cursor_snap_active();
+  state->draw_plane = true;
 
   float dimensions[3] = {0.0f};
   if (drag->type == WM_DRAG_ID) {
@@ -678,6 +679,7 @@ static void view3d_ob_drop_copy(wmDrag *drag, wmDropBox *drop)
   RNA_boolean_set(drop->ptr, "duplicate", !is_imported_id);
 
   V3DSnapCursorState *snap_state = ED_view3d_cursor_snap_state_get();
+  BLI_assert(snap_state->draw_box || snap_state->draw_plane);
   Object *ob = (Object *)id;
   float obmat_final[4][4];



More information about the Bf-blender-cvs mailing list