diff options
| -rw-r--r-- | indra/newview/llchiclet.cpp | 7 | ||||
| -rw-r--r-- | indra/newview/llimview.cpp | 6 | 
2 files changed, 7 insertions, 6 deletions
diff --git a/indra/newview/llchiclet.cpp b/indra/newview/llchiclet.cpp index b919195fb2..b5119790c0 100644 --- a/indra/newview/llchiclet.cpp +++ b/indra/newview/llchiclet.cpp @@ -830,8 +830,13 @@ LLChicletPanel::~LLChicletPanel()  void im_chiclet_callback(LLChicletPanel* panel, const LLSD& data){  	LLUUID session_id = data["session_id"].asUUID(); -	S32 unread = data["num_unread"].asInteger(); +	LLUUID from_id = data["from_id"].asUUID(); +	const std::string from = data["from"].asString(); + +	//we do not show balloon (indicator of new messages) for system messages and our own messages +	if (from_id.isNull() || from_id == gAgentID || SYSTEM_FROM == from) return; +	S32 unread = data["num_unread"].asInteger();  	LLIMFloater* im_floater = LLIMFloater::findInstance(session_id);  	if (im_floater && im_floater->getVisible())  	{ diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index be5fbdbbf8..9c38d9c5fc 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -439,11 +439,7 @@ bool LLIMModel::addMessage(const LLUUID& session_id, const std::string& from, co  	addToHistory(session_id, from, from_id, utf8_text);  	if (log2file) logToFile(session_id, from, from_id, utf8_text); -	//we do not count system messages and our messages -	if (from_id.notNull() && from_id != gAgentID && SYSTEM_FROM != from) -	{ -		session->mNumUnread++; -	} +	session->mNumUnread++;  	// notify listeners  	LLSD arg;  | 
