diff --git a/indra/newview/llavatarrendernotifier.cpp b/indra/newview/llavatarrendernotifier.cpp
index f39e84786b63684a7bbe99e09005dcff3a920f4d..8ba722f76d8f7328dacaae0e9772184e2304b877 100644
--- a/indra/newview/llavatarrendernotifier.cpp
+++ b/indra/newview/llavatarrendernotifier.cpp
@@ -63,7 +63,7 @@ mShowOverLimitAgents(false)
 
 std::string LLAvatarRenderNotifier::overLimitMessage()
 {
-    
+    static const char* everyone_now = "av_render_everyone_now";
     static const char* not_everyone = "av_render_not_everyone";
     static const char* over_half = "av_render_over_half";
     static const char* most = "av_render_most_of";
@@ -80,7 +80,7 @@ std::string LLAvatarRenderNotifier::overLimitMessage()
     }
     else if ( mLatestOverLimitPct >= 50.0 )
     {
-        message = over_half;        
+        message = over_half;
     }
     else if ( mLatestOverLimitPct > 10.0 )
     {
@@ -88,7 +88,8 @@ std::string LLAvatarRenderNotifier::overLimitMessage()
     }
     else
     {
-        // message is left empty
+        // Will be shown only after overlimit was > 0
+        message = everyone_now;
     }
     return LLTrans::getString(message);
 }
@@ -101,11 +102,11 @@ void LLAvatarRenderNotifier::displayNotification()
 	LLSD args;
 	args["AGENT_COMPLEXITY"] = LLSD::Integer(mLatestAgentComplexity);
 	std::string notification_name;
-    std::string notification_message = overLimitMessage();
-	if (mShowOverLimitAgents && !notification_message.empty())
-	{
-		notification_name = "RegionAndAgentComplexity";
-		args["OVERLIMIT_MSG"] = notification_message;
+    if (mShowOverLimitAgents)
+    {
+        std::string notification_message = overLimitMessage();
+        notification_name = "RegionAndAgentComplexity";
+        args["OVERLIMIT_MSG"] = notification_message;
 	}
 	else
 	{
diff --git a/indra/newview/skins/default/xui/en/strings.xml b/indra/newview/skins/default/xui/en/strings.xml
index d61511f60ffe9d7f490bd53c6f5bfe79a2b0050f..2950edce9d85f42df0dd731b99c021a6707c6a95 100755
--- a/indra/newview/skins/default/xui/en/strings.xml
+++ b/indra/newview/skins/default/xui/en/strings.xml
@@ -2490,6 +2490,7 @@ This feature is currently in Beta. Please add your name to this [http://goo.gl/f
 
   <!-- Avatar complexity rendering messages, see
        llavatarrendernotifier -->
+  <string name="av_render_everyone_now">Everyone can see you now.</string>
   <string name="av_render_not_everyone">You may not be rendered by everyone around you.</string>
   <string name="av_render_over_half">You may not be rendered by over half of those around you.</string>
   <string name="av_render_most_of">You may not be rendered by most of those around you.</string>