Revert "3D View: locked camera was using the original view offset"

This reverts commit 3f31c28a02.

Gives issues zooming, could be resolved but it mostly worked OK before,
and it's not a priority to spend time on, so leave as is for now.
This commit is contained in:
Campbell Barton
2018-11-30 19:01:03 +11:00
parent 3f31c28a02
commit 530e567578
3 changed files with 3 additions and 3 deletions

View File

@@ -402,7 +402,7 @@ static void viewops_data_create(
/* set the view from the camera, if view locking is enabled.
* we may want to make this optional but for now its needed always */
ED_view3d_camera_lock_init_ex(vod->v3d, vod->rv3d, false);
ED_view3d_camera_lock_init(vod->v3d, vod->rv3d);
vod->init.dist = rv3d->dist;
vod->init.camzoom = rv3d->camzoom;

View File

@@ -460,7 +460,7 @@ void ED_view3d_camera_lock_init_ex(View3D *v3d, RegionView3D *rv3d, const bool c
void ED_view3d_camera_lock_init(View3D *v3d, RegionView3D *rv3d)
{
ED_view3d_camera_lock_init_ex(v3d, rv3d, false);
ED_view3d_camera_lock_init_ex(v3d, rv3d, true);
}
/**

View File

@@ -156,7 +156,7 @@ void ED_view3d_smooth_view_ex(
* we allow camera option locking to initialize the view settings from the camera.
*/
if (sview->camera == NULL && sview->camera_old == NULL) {
ED_view3d_camera_lock_init_ex(v3d, rv3d, true);
ED_view3d_camera_lock_init(v3d, rv3d);
}
/* store the options we want to end with */