diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-11-06 21:12:33 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-11-06 21:12:33 +0800 |
commit | 730bf4fa4cd5111a48b69276cf9bbb7a2039d95d (patch) | |
tree | 9ec6d8d382621be5f3ae141758849ea13a5b56ee /indra/newview/llconversationmodel.cpp | |
parent | 5f3e7b7fb33160c3250d445f45214aa30130c9e7 (diff) | |
parent | cadde1312df01d4e5939e05816cb011a8e14d5b1 (diff) |
Merge branch 'main' into 2024.09-ExtraFPS
Diffstat (limited to 'indra/newview/llconversationmodel.cpp')
-rw-r--r-- | indra/newview/llconversationmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llconversationmodel.cpp b/indra/newview/llconversationmodel.cpp index 4cd85ac756..bd29dba6bc 100644 --- a/indra/newview/llconversationmodel.cpp +++ b/indra/newview/llconversationmodel.cpp @@ -727,7 +727,7 @@ bool LLConversationSort::operator()(const LLConversationItem* const& a, const LL if ((type_a == LLConversationItem::CONV_SESSION_NEARBY) || (type_b == LLConversationItem::CONV_SESSION_NEARBY)) { // If one is the nearby session, put nearby session *always* last - return (type_b == LLConversationItem::CONV_SESSION_NEARBY); + return (!(type_b == LLConversationItem::CONV_SESSION_NEARBY)); } else if (sort_order == LLConversationFilter::SO_SESSION_TYPE) { |