diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-07-30 19:09:48 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-07-30 19:09:48 -0700 |
commit | b57d8e9c06e01cc6aa2eca17fa80da0a36a52b91 (patch) | |
tree | 6e0f3e52f9aead1aa53aecb6561c096b2db7ece1 /indra/newview/llnotificationtiphandler.cpp | |
parent | 209fd15176647a4b8defbb6e66daea6eb12d4b42 (diff) |
CHUI-258: Adding a method to better whether nearby chat is visible or not.
Diffstat (limited to 'indra/newview/llnotificationtiphandler.cpp')
-rw-r--r-- | indra/newview/llnotificationtiphandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llnotificationtiphandler.cpp b/indra/newview/llnotificationtiphandler.cpp index 507c6686fd..a420c0d2ed 100644 --- a/indra/newview/llnotificationtiphandler.cpp +++ b/indra/newview/llnotificationtiphandler.cpp @@ -86,7 +86,7 @@ bool LLTipHandler::processNotification(const LLNotificationPtr& notification) // don't show toast if Nearby Chat is opened LLNearbyChat* nearby_chat = LLNearbyChat::getInstance(); - if (!nearby_chat->isMinimized() && nearby_chat->getVisible()) + if (nearby_chat->isChatVisible()) { return false; } |