diff options
author | Rider Linden <rider@lindenlab.com> | 2024-10-14 12:49:43 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2024-10-14 14:51:56 -0700 |
commit | 2cd1f22f5b51708aaaf5d16a25847ef2c2832312 (patch) | |
tree | d40ccf40db721adf97780b33bab14b824c6cf4b4 /indra/newview/llfloaterworldmap.cpp | |
parent | 35b3842b08208b9f0a440498b21a8ff8688d8a48 (diff) |
Private Issue #297: Accept new flags in ScriptTeleportRequest message. Flags indicate if the world map should be opened and focused.
Diffstat (limited to 'indra/newview/llfloaterworldmap.cpp')
-rwxr-xr-x | indra/newview/llfloaterworldmap.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/newview/llfloaterworldmap.cpp b/indra/newview/llfloaterworldmap.cpp index dda7266220..4674cd68b6 100755 --- a/indra/newview/llfloaterworldmap.cpp +++ b/indra/newview/llfloaterworldmap.cpp @@ -486,8 +486,11 @@ void LLFloaterWorldMap::onOpen(const LLSD& key) const LLUUID landmark_folder_id = gInventory.findCategoryUUIDForType(LLFolderType::FT_LANDMARK); LLInventoryModelBackgroundFetch::instance().start(landmark_folder_id); - mLocationEditor->setFocus( true); - gFocusMgr.triggerFocusFlash(); + if (hasFocus()) + { + mLocationEditor->setFocus( true); + gFocusMgr.triggerFocusFlash(); + } buildAvatarIDList(); buildLandmarkIDLists(); |