summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2010-12-27 21:21:01 -0800
committerMerov Linden <merov@lindenlab.com>2010-12-27 21:21:01 -0800
commit0b74df6774dd90646e66153b50ea5bb7cdcc39e3 (patch)
tree86ee36fbbc828e41bf168dd9bc057a6cfc2c4fd7 /indra/newview
parenta9caa3151cea77b992c06c5a774d333ffd3016e1 (diff)
parent6730aacbfa8e1d6c778f514e489b96b29a247153 (diff)
STORM-523 : pull into viewer-development
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llscreenchannel.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/llscreenchannel.cpp b/indra/newview/llscreenchannel.cpp
index 0eeb89792b..80c78a50c9 100644
--- a/indra/newview/llscreenchannel.cpp
+++ b/indra/newview/llscreenchannel.cpp
@@ -495,7 +495,7 @@ void LLScreenChannel::modifyToastByNotificationID(LLUUID id, LLPanel* panel)
//--------------------------------------------------------------------------
void LLScreenChannel::redrawToasts()
{
- if(mToastList.size() == 0 || isHovering())
+ if(mToastList.size() == 0)
return;
switch(mToastAlignment)
@@ -841,8 +841,7 @@ void LLScreenChannel::onToastHover(LLToast* toast, bool mouse_enter)
}
}
- if(!isHovering())
- redrawToasts();
+ redrawToasts();
}
//--------------------------------------------------------------------------