Skip to content
Snippets Groups Projects
Commit 9d988f44 authored by Richard Linden's avatar Richard Linden
Browse files

EXP-1461 FIX Incoming Nearby chat not visible in chat toasts/bubbles to user...

EXP-1461 FIX Incoming Nearby chat not visible in chat toasts/bubbles to user when chat window is minimized with chat history opened
parent 94d34aef
No related branches found
No related tags found
No related merge requests found
...@@ -568,7 +568,8 @@ void LLNearbyChatHandler::processChat(const LLChat& chat_msg, // WARNING - not ...@@ -568,7 +568,8 @@ void LLNearbyChatHandler::processChat(const LLChat& chat_msg, // WARNING - not
sChatWatcher->post(notification); sChatWatcher->post(notification);
if( chat_bar->getVisible() && nearby_chat->getVisible() if( !chat_bar->isMinimized()
&& nearby_chat->isInVisibleChain()
|| ( chat_msg.mSourceType == CHAT_SOURCE_AGENT || ( chat_msg.mSourceType == CHAT_SOURCE_AGENT
&& gSavedSettings.getBOOL("UseChatBubbles") ) && gSavedSettings.getBOOL("UseChatBubbles") )
|| !mChannel->getShowToasts() ) // to prevent toasts in Busy mode || !mChannel->getShowToasts() ) // to prevent toasts in Busy mode
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment