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>2018-11-30 11:01:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-30 11:01:06 +0300
commit530e567578f04e1ae5452aea8694f2def7898299 (patch)
tree053c0c81e7b7d1180e4309994601a441e8225176 /source/blender/editors/space_view3d/view3d_utils.c
parent3f31c28a025cf61e2c4df33f28467771ae603965 (diff)
Revert "3D View: locked camera was using the original view offset"
This reverts commit 3f31c28a025cf61e2c4df33f28467771ae603965. 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.
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_utils.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_utils.c b/source/blender/editors/space_view3d/view3d_utils.c
index d90f4c32fc0..68582644f34 100644
--- a/source/blender/editors/space_view3d/view3d_utils.c
+++ b/source/blender/editors/space_view3d/view3d_utils.c
@@ -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);
}
/**