diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2024-10-23 15:15:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-23 15:15:36 +0300 |
commit | 7783191f91b19d10a14cdb475fedad46ddaa8a9b (patch) | |
tree | cbcb84ca1ab5049bb300c1ce4b931156fac4a6f9 /indra/llui/llscrolllistctrl.cpp | |
parent | bd7580b164374fc3c44c0c6b96d6c31a63175f57 (diff) |
#2910 Allow terminating multiple scripts at once
Diffstat (limited to 'indra/llui/llscrolllistctrl.cpp')
-rw-r--r-- | indra/llui/llscrolllistctrl.cpp | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/indra/llui/llscrolllistctrl.cpp b/indra/llui/llscrolllistctrl.cpp index 8093536868..3ed328e37f 100644 --- a/indra/llui/llscrolllistctrl.cpp +++ b/indra/llui/llscrolllistctrl.cpp @@ -423,6 +423,19 @@ std::vector<LLScrollListItem*> LLScrollListCtrl::getAllSelected() const return ret; } +std::vector<LLSD> LLScrollListCtrl::getAllSelectedValues() const +{ + std::vector<LLSD> ret; + for (LLScrollListItem* item : mItemList) + { + if (item->getSelected()) + { + ret.push_back(item->getValue()); + } + } + return ret; +} + S32 LLScrollListCtrl::getNumSelected() const { S32 numSelected = 0; @@ -1510,7 +1523,7 @@ bool LLScrollListCtrl::setSelectedByValue(const LLSD& value, bool selected) { if (selected) { - selectItem(item, -1); + selectItem(item, -1, !mAllowMultipleSelection); } else { |