Fix warning spam "LLFloaterNotificationsTabbed::removeItemByID: Unable to remove notification from the list, ID..." when closing script dialogs

Ansariel 2016-01-31 15:13:16 +01:00
parent 5b26be6ab4
commit 4d46630e9a
1 changed files with 7 additions and 0 deletions

View File

@ -126,6 +126,13 @@ LLFloaterNotificationsTabbed::~LLFloaterNotificationsTabbed()
//---------------------------------------------------------------------------------
void LLFloaterNotificationsTabbed::removeItemByID(const LLUUID& id, std::string type)
{
// <FS:Ansariel> Ignore for script dialogs that are not listed in the notifications list
if (type == "ScriptDialog" || type == "ScriptDialogGroup")
{
return;
}
// </FS:Ansariel>
if(mNotificationsSeparator->removeItemByID(type, id))
{
if (NULL != mSysWellChiclet)