diff options
author | mberezhnoy <mberezhnoy@productengine.com> | 2013-03-04 17:11:14 +0200 |
---|---|---|
committer | mberezhnoy <mberezhnoy@productengine.com> | 2013-03-04 17:11:14 +0200 |
commit | 23ca3a1f2ce113cde94bdfea5fd794ecf808535e (patch) | |
tree | d721aabc39d4dfd82169674270121b62573b715e | |
parent | e42e6bc68ae0b0f7a0bd2ca6f500ba783cc201a3 (diff) |
CHUI-806 (IM floater is not become as a top while geting message with enabled 'Open conversation window' option)
-rw-r--r-- | indra/newview/llimview.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index d69bd89f13..8f3f5145a9 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -273,7 +273,7 @@ void on_new_message(const LLSD& msg) } } - else if("openconversations" == action && !session_floater_is_open) + else if("openconversations" == action) { //User is not focused on conversation containing the message if(session_floater_not_focused) @@ -291,7 +291,8 @@ void on_new_message(const LLSD& msg) //useMostItrusiveIMNotification will be called to notify user a message exists if(session_id.notNull() && participant_id.notNull() - && gAgent.isDoNotDisturb()) + && gAgent.isDoNotDisturb() + && !session_floater_is_open) { LLAvatarNameCache::get(participant_id, boost::bind(&on_avatar_name_cache_toast, _1, _2, msg)); } |