diff --git a/indra/newview/llfloaternotificationstabbed.cpp b/indra/newview/llfloaternotificationstabbed.cpp index 4c2629334e..cc94ef71d9 100644 --- a/indra/newview/llfloaternotificationstabbed.cpp +++ b/indra/newview/llfloaternotificationstabbed.cpp @@ -126,6 +126,13 @@ LLFloaterNotificationsTabbed::~LLFloaterNotificationsTabbed() //--------------------------------------------------------------------------------- void LLFloaterNotificationsTabbed::removeItemByID(const LLUUID& id, std::string type) { + // Ignore for script dialogs that are not listed in the notifications list + if (type == "ScriptDialog" || type == "ScriptDialogGroup") + { + return; + } + // + if(mNotificationsSeparator->removeItemByID(type, id)) { if (NULL != mSysWellChiclet)