diff options
| -rw-r--r-- | indra/newview/llscreenchannel.cpp | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/indra/newview/llscreenchannel.cpp b/indra/newview/llscreenchannel.cpp index 027f3daffb..2eee7635a7 100644 --- a/indra/newview/llscreenchannel.cpp +++ b/indra/newview/llscreenchannel.cpp @@ -250,6 +250,13 @@ void LLScreenChannel::onToastDestroyed(LLToast* toast)  	{  		mToastList.erase(it);  	} + +	it = find(mStoredToastList.begin(), mStoredToastList.end(), static_cast<LLPanel*>(toast)); + +	if(it != mStoredToastList.end()) +	{ +		mStoredToastList.erase(it); +	}  } | 
