Skip to content
Snippets Groups Projects
Commit 4bcf2079 authored by Aura Linden's avatar Aura Linden
Browse files

Fix for maint-3154 alt-zoom zooms way out

parent 644ca6a0
No related branches found
No related tags found
No related merge requests found
......@@ -913,6 +913,8 @@ void LLAgentCamera::cameraZoomIn(const F32 fraction)
F32 max_distance = llmin(mDrawDistance - DIST_FUDGE,
LLWorld::getInstance()->getRegionWidthInMeters() - DIST_FUDGE );
max_distance = llmin(max_distance, current_distance * 4.f); //Scaled max relative to current distance. MAINT-3154
if (new_distance > max_distance)
{
new_distance = max_distance;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment