From f0b18e52a3d977c2c19f2a6b4e50292acb5941f2 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Wed, 4 Feb 2015 13:54:39 -0500 Subject: [PATCH] OR not AND --- indra/newview/llnotify.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llnotify.cpp b/indra/newview/llnotify.cpp index 62ef0e53a..9cbafafd2 100644 --- a/indra/newview/llnotify.cpp +++ b/indra/newview/llnotify.cpp @@ -769,7 +769,7 @@ void LLNotifyBoxView::showOnly(LLView* view) { if (view == (*iter)) continue; LLView* view(*iter); - if (isGroupNotifyBox(view) && !view->getVisible()) + if (isGroupNotifyBox(view) || !view->getVisible()) continue; if (!static_cast(view)->isTip()) view->setVisible(false);