diff options
author | AlexanderP ProductEngine <apaschenko@productengine.com> | 2013-01-16 16:40:59 +0200 |
---|---|---|
committer | AlexanderP ProductEngine <apaschenko@productengine.com> | 2013-01-16 16:40:59 +0200 |
commit | 8c3d3d4b07f12e3462af7745016536389ab7cf73 (patch) | |
tree | ef7a1cebfbb63572557010cb3cab0ce9b05e2cb2 /indra/newview | |
parent | 05e063836abb20d487dfd4175a09413b0cea0e38 (diff) |
CHUI-618 ADD FIX User sees no indication of offline messages received with conversation log preference turned off: forced flashing of conversation's item when offline message is present
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llimview.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index ff171fc0f8..d0a8dfc0c8 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -2620,8 +2620,9 @@ void LLIMMgr::addMessage( if (is_offline_msg) { LLFloaterReg::showInstance("im_container"); + LLFloaterReg::getTypedInstance<LLFloaterIMContainer>("im_container")-> + flashConversationItemWidget(session_id, true); } - } void LLIMMgr::addSystemMessage(const LLUUID& session_id, const std::string& message_name, const LLSD& args) |