diff options
author | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-07-17 15:35:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-17 15:35:10 +0300 |
commit | 33bc6edb3df4ce456aad2bb44ef6be18bbeea882 (patch) | |
tree | 29060338756c240e11702c6ee4eb7b67524b755f /indra/newview/llfloaterworldmap.cpp | |
parent | 7a33f2279be82e32acd6e25245026dc305b1ed2b (diff) | |
parent | af3ef42d40e7b5eb2a9ba0b45ed74bbf7aa18656 (diff) |
Merge pull request #4380 from secondlife/andreyk/gltf_mesh_import
Merge develop into gltf mesh import
Diffstat (limited to 'indra/newview/llfloaterworldmap.cpp')
-rwxr-xr-x | indra/newview/llfloaterworldmap.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/indra/newview/llfloaterworldmap.cpp b/indra/newview/llfloaterworldmap.cpp index c70058145a..565642e683 100755 --- a/indra/newview/llfloaterworldmap.cpp +++ b/indra/newview/llfloaterworldmap.cpp @@ -1694,14 +1694,15 @@ void LLFloaterWorldMap::updateSims(bool found_null_sim) if (!match.isUndefined()) { mSearchResults->selectByValue(match); + mSearchResults->setFocus(true); + onCommitSearchResult(); } - // else select first found item + // else let user decide else { - mSearchResults->selectFirstItem(); + mSearchResults->operateOnAll(LLCtrlListInterface::OP_DESELECT); + mSearchResults->setFocus(true); } - mSearchResults->setFocus(true); - onCommitSearchResult(); } else { |