diff options
| -rw-r--r-- | indra/newview/llnearbychathandler.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/newview/llnearbychathandler.cpp b/indra/newview/llnearbychathandler.cpp index 330a21ef65..c43c95a366 100644 --- a/indra/newview/llnearbychathandler.cpp +++ b/indra/newview/llnearbychathandler.cpp @@ -568,7 +568,8 @@ void LLNearbyChatHandler::processChat(const LLChat& chat_msg,		// WARNING - not  	sChatWatcher->post(notification); -	if( chat_bar->getVisible() && nearby_chat->getVisible()  +	if( !chat_bar->isMinimized() +		&& nearby_chat->isInVisibleChain()   		|| ( chat_msg.mSourceType == CHAT_SOURCE_AGENT  			&& gSavedSettings.getBOOL("UseChatBubbles") )  		|| !mChannel->getShowToasts() ) // to prevent toasts in Busy mode | 
