diff options
author | Cho <cho@lindenlab.com> | 2013-03-05 00:41:22 +0000 |
---|---|---|
committer | Cho <cho@lindenlab.com> | 2013-03-05 00:41:22 +0000 |
commit | a5861a4a49b06fe8e61c5d120df637062e10799d (patch) | |
tree | 288559abb1336bc13b94939e20bf5c106517a85f /indra/newview | |
parent | a26c1672235578f3a4e21be370b11522207e2c57 (diff) |
CHUI-772 FIX User sees no notification of conversation activity not visible in long scrolling conversation list
Added call to setSelectedSession() from LLConversationViewParticipant::handleMouseDown()
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llconversationview.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llconversationview.cpp b/indra/newview/llconversationview.cpp index 882ef64715..74b348cd81 100755 --- a/indra/newview/llconversationview.cpp +++ b/indra/newview/llconversationview.cpp @@ -567,6 +567,7 @@ BOOL LLConversationViewParticipant::handleMouseDown( S32 x, S32 y, MASK mask ) LLFloaterIMContainer *im_container = LLFloaterReg::getTypedInstance<LLFloaterIMContainer>("im_container"); LLFloaterIMSessionTab* session_floater = LLFloaterIMSessionTab::findConversation(session_id); + im_container->setSelectedSession(session_id); im_container->flashConversationItemWidget(session_id,false); im_container->selectFloater(session_floater); im_container->collapseMessagesPane(false); |