summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMnikolenko Productengine <mnikolenko@productengine.com>2022-08-04 17:45:06 +0300
committerMnikolenko Productengine <mnikolenko@productengine.com>2022-08-04 17:45:06 +0300
commite3ef38876b9951af3ea8052fb02db46212c76965 (patch)
treeac4f92347e952014042688944dca75f75d2391db
parentea26ee5e92aa93ed966581ab17da5fc38d43a884 (diff)
SL-17785 FIXED World Map scrolls too slowly after pressing "Me" button
-rwxr-xr-xindra/newview/llfloaterworldmap.cpp2
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;
}