Fix T45933: Can't select scaled camera in camera view

This commit is contained in:
Campbell Barton 2015-08-28 12:10:21 +10:00
parent 6bdf1d6dde
commit 85edd8fc82
Notes: blender-bot 2023-02-14 08:42:53 +01:00
Referenced by issue #45933, Cannot select camera when camera has been scaled on the x / y / z
1 changed files with 2 additions and 2 deletions

View File

@ -442,8 +442,8 @@ void BKE_camera_view_frame_ex(
*r_drawsize = 1.0f;
depth = -(camera->clipsta + 0.1f) * scale[2];
fac = depth / (camera->lens / (-half_sensor));
scale_x = 1.0f;
scale_y = 1.0f;
scale_x = scale[0] / scale[2];
scale_y = scale[1] / scale[2];
}
else {
/* fixed size, variable depth (stays a reasonable size in the 3D view) */