diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-02-02 20:40:57 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-02-02 20:44:08 +0200 |
commit | 6987dcfd62284bd58bbfff810198b7aed02c28f4 (patch) | |
tree | 43c2424e02012e1376bb18e3469d0ea323fa062c /indra/newview/llfloaterworldmap.cpp | |
parent | 8b7691498ff188c286436c78a53ce7c494b0df83 (diff) |
SL-11011 Multiselect, scroll to selection and search fix for estate's ban list
Diffstat (limited to 'indra/newview/llfloaterworldmap.cpp')
-rw-r--r-- | 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 27197f0b06..70808b6689 100644 --- a/indra/newview/llfloaterworldmap.cpp +++ b/indra/newview/llfloaterworldmap.cpp @@ -994,7 +994,7 @@ void LLFloaterWorldMap::clearAvatarSelection(BOOL clear_ui) { mTrackedStatus = LLTracker::TRACKING_NOTHING; LLCtrlListInterface *list = mListFriendCombo; - if (list) + if (list && list->getSelectedValue().asString() != "None") { list->selectByValue( "None" ); } |