Fix drop of dimensionless objects in 3DView

The matrix and location were not being calculated in this case.
This commit is contained in:
Germano Cavalcante 2021-10-26 10:07:49 -03:00
parent af26720b21
commit b8b9023d8c
1 changed files with 2 additions and 0 deletions

View File

@ -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];