diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-02-20 23:48:57 +0200 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-02-21 00:34:47 +0200 |
commit | 5aa56bf1a7fa1226dce5c3be76504eaa7ff93674 (patch) | |
tree | 71ee22283e8cdffd9895cc2e9d5159d02aabff7b | |
parent | 11ded7b9a2451b711534f10187cd0d72628d9da0 (diff) |
Viewer#822 Sort participants by recent activity is not working
-rw-r--r-- | indra/newview/llfloaterimcontainer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp index f997dc9910..635aee64ff 100644 --- a/indra/newview/llfloaterimcontainer.cpp +++ b/indra/newview/llfloaterimcontainer.cpp @@ -1770,6 +1770,7 @@ void LLFloaterIMContainer::setTimeNow(const LLUUID& session_id, const LLUUID& pa LLConversationItemSession* item = dynamic_cast<LLConversationItemSession*>(getSessionModel(session_id)); if (item) { + item->setTimeNow(participant_id); mConversationViewModel.requestSortAll(); mConversationsRoot->arrangeAll(); } |