diff --git a/doc/contributions.txt b/doc/contributions.txt
index 5a8881a85fd3a283f05183e05d52c1e9d050df29..f987cf485202b07485c54054158a85e7d2c0e55b 100644
--- a/doc/contributions.txt
+++ b/doc/contributions.txt
@@ -365,6 +365,7 @@ Joghert LeSabre
 	VWR-64
 Jonathan Yap
 	VWR-17801
+	STORM-523
 	STORM-616
 	STORM-679
 	STORM-596
diff --git a/indra/newview/llscreenchannel.cpp b/indra/newview/llscreenchannel.cpp
index 0eeb89792bd70ee723b9447d08da9c666a6ce075..80c78a50c9f078288fae85712f4b45b2d0c242aa 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();
 }
 
 //--------------------------------------------------------------------------