diff options
| author | Alexei Arabadji <aarabadji@productengine.com> | 2009-11-12 19:08:31 +0200 | 
|---|---|---|
| committer | Alexei Arabadji <aarabadji@productengine.com> | 2009-11-12 19:08:31 +0200 | 
| commit | 3b7ed8a4e9fdff83f89b49760d281ee5c13c8155 (patch) | |
| tree | 44e675208a45c9d06c7d00295f267915ed26b549 | |
| parent | e7af49ce5d8313efa3d58cd90c2a67abd43fc822 (diff) | |
related to EXT-2397 "Notification and IM toasts stop to appear after pressing Reply in any IM toast"
corrected on hover lost event handling
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llscreenchannel.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/indra/newview/llscreenchannel.cpp b/indra/newview/llscreenchannel.cpp index 49fdd4f365..ed606d5457 100644 --- a/indra/newview/llscreenchannel.cpp +++ b/indra/newview/llscreenchannel.cpp @@ -655,6 +655,10 @@ void LLScreenChannel::onToastHover(LLToast* toast, bool mouse_enter)  	{  		mHoveredToast = toast;  	} +	else +	{ +		mHoveredToast = NULL; +	}  	switch(stack_size)  	{ | 
