Skip to content
Snippets Groups Projects
Commit 798461f5 authored by Leslie Linden's avatar Leslie Linden
Browse files

EXP-1489 fix from Paul PE

parents 1b56b7d2 1d47d3d8
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ bool LLTipHandler::processNotification(const LLSD& notify) ...@@ -95,7 +95,7 @@ bool LLTipHandler::processNotification(const LLSD& notify)
// don't show toast if Nearby Chat is opened // don't show toast if Nearby Chat is opened
LLNearbyChat* nearby_chat = LLNearbyChat::getInstance(); LLNearbyChat* nearby_chat = LLNearbyChat::getInstance();
LLNearbyChatBar* nearby_chat_bar = LLNearbyChatBar::getInstance(); LLNearbyChatBar* nearby_chat_bar = LLNearbyChatBar::getInstance();
if (nearby_chat_bar->getVisible() && nearby_chat->getVisible()) if (!nearby_chat_bar->isMinimized() && nearby_chat_bar->getVisible() && nearby_chat->getVisible())
{ {
return false; return false;
} }
......
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