diff options
| -rw-r--r-- | indra/newview/llbottomtray.cpp | 6 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/alert_button.xml | 1 | 
2 files changed, 6 insertions, 1 deletions
diff --git a/indra/newview/llbottomtray.cpp b/indra/newview/llbottomtray.cpp index fe43ab7084..9b215e4096 100644 --- a/indra/newview/llbottomtray.cpp +++ b/indra/newview/llbottomtray.cpp @@ -48,6 +48,7 @@  #include "llsyswellwindow.h"  #include "llfloatercamera.h"  #include "lltexteditor.h" +#include "llnotifications.h"  // Build time optimization, generate extern template once in .cpp file  template class LLBottomTray* LLSingleton<class LLBottomTray>::getInstance(); @@ -1106,7 +1107,10 @@ void LLBottomTray::setTrayButtonVisibleIfPossible(EResizeState shown_object_type  		// mark this button to show it while future bottom tray extending  		mResizeState |= shown_object_type;  		if ( raise_notification ) -			LLNotificationsUtil::add("BottomTrayButtonCanNotBeShown"); +			LLNotificationsUtil::add("BottomTrayButtonCanNotBeShown", +									 LLSD(), +									 LLSD(), +									 LLNotificationFunctorRegistry::instance().DONOTHING);  	}  } diff --git a/indra/newview/skins/default/xui/en/alert_button.xml b/indra/newview/skins/default/xui/en/alert_button.xml index 48c67a3770..632564d793 100644 --- a/indra/newview/skins/default/xui/en/alert_button.xml +++ b/indra/newview/skins/default/xui/en/alert_button.xml @@ -1,6 +1,7 @@  <?xml version="1.0" encoding="utf-8" standalone="yes" ?>  <button +  name="Alert Button"    label_shadow="true"    auto_resize="false"    image_overlay_alignment="center"  | 
