summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormobserveur <mobserveur@gmail.co[alias]>2024-11-06 10:59:35 +0100
committerErik Kundiman <erik@megapahit.org>2024-11-06 18:03:25 +0800
commit92034c9d893ff145f6eda6551e73f477f42bdc8b (patch)
tree6305eedab64c3962a11387bb16c75dc19d60d1b8
parent42fe5f9444d049505d893f33edcfd522c0a4315e (diff)
Conversation panel: Nearby item on top
This commit forces the nearby item on the left side on the panel to be on top instead of the bottom.
-rw-r--r--indra/newview/llconversationmodel.cpp2
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)
{