summaryrefslogtreecommitdiff
path: root/indra/newview/llnotificationscripthandler.cpp
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2013-02-04 19:29:56 -0800
committerMerov Linden <merov@lindenlab.com>2013-02-04 19:29:56 -0800
commit5d8c9902767ec5a81b002694d5520a29f3af03fe (patch)
treef89441a75977d2bc3eb078d3ab8c91253569b9f7 /indra/newview/llnotificationscripthandler.cpp
parent6a68f16f2e908838b89216543b36f07e2a71c360 (diff)
parentcfb8d6abcbefad02b7297dc1d513fb3395a8da26 (diff)
Pull merge from lindenlab/viewer-chui
Diffstat (limited to 'indra/newview/llnotificationscripthandler.cpp')
-rw-r--r--indra/newview/llnotificationscripthandler.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llnotificationscripthandler.cpp b/indra/newview/llnotificationscripthandler.cpp
index 19dd6d4ca0..08c98e4f28 100644
--- a/indra/newview/llnotificationscripthandler.cpp
+++ b/indra/newview/llnotificationscripthandler.cpp
@@ -98,7 +98,9 @@ bool LLScriptHandler::processNotification(const LLNotificationPtr& notification)
p.on_delete_toast = boost::bind(&LLScriptHandler::onDeleteToast, this, _1);
if(gAgent.isDoNotDisturb())
{
- p.force_show = notification->getName() == "SystemMessage" || notification->getPriority() >= NOTIFICATION_PRIORITY_HIGH;
+ p.force_show = notification->getName() == "SystemMessage"
+ || notification->getName() == "GodMessage"
+ || notification->getPriority() >= NOTIFICATION_PRIORITY_HIGH;
}
LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(mChannel.get());