diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2022-08-04 17:45:06 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2022-08-04 17:45:06 +0300 |
commit | e3ef38876b9951af3ea8052fb02db46212c76965 (patch) | |
tree | ac4f92347e952014042688944dca75f75d2391db /indra/newview | |
parent | ea26ee5e92aa93ed966581ab17da5fc38d43a884 (diff) |
SL-17785 FIXED World Map scrolls too slowly after pressing "Me" button
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llfloaterworldmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterworldmap.cpp b/indra/newview/llfloaterworldmap.cpp index f363733261..16b8c7a4bc 100755 --- a/indra/newview/llfloaterworldmap.cpp +++ b/indra/newview/llfloaterworldmap.cpp @@ -1281,7 +1281,7 @@ void LLFloaterWorldMap::onShowTargetBtn() void LLFloaterWorldMap::onShowAgentBtn() { - mMapView->setPan(0, 0, false); // false == animate + mMapView->setPanWithInterpTime(0, 0, false, 0.1f); // false == animate // Set flag so user's location will be displayed if not tracking anything else mSetToUserPosition = true; } |