Fix flycam and arcball not having same reset parameters

* Both were centring around the AABB but arcball had a scale applied to the
  distance
This commit is contained in:
baldurk
2025-12-08 18:24:19 +00:00
parent 45eabffb54
commit dbb8b2d022
+1 -1
View File
@@ -7571,7 +7571,7 @@ void BufferViewer::on_autofitCamera_clicked()
mid = transformedMid;
}
mid.z -= len;
mid.z -= len * 0.7f;
m_Flycam->Reset(mid);
}