diff options
| -rw-r--r-- | indra/newview/llpanellandmarks.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/notifications.xml | 10 | 
2 files changed, 12 insertions, 2 deletions
| diff --git a/indra/newview/llpanellandmarks.cpp b/indra/newview/llpanellandmarks.cpp index 30acf37f82..d6e407a0ed 100644 --- a/indra/newview/llpanellandmarks.cpp +++ b/indra/newview/llpanellandmarks.cpp @@ -35,6 +35,7 @@  #include "llbutton.h"  #include "llfloaterreg.h" +#include "llnotificationsutil.h"  #include "llsdutil.h"  #include "llsdutil_math.h"  #include "llregionhandle.h" @@ -632,8 +633,7 @@ void LLLandmarksPanel::onAddAction(const LLSD& userdata) const  		LLViewerInventoryItem* landmark = LLLandmarkActions::findLandmarkForAgentPos();  		if(landmark)  		{ -			LLSideTray::getInstance()->showPanel("panel_places",  -								LLSD().with("type", "landmark").with("id",landmark->getUUID())); +			LLNotificationsUtil::add("LandmarkAlreadyExists");  		}  		else  		{ diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml index 957b4d74db..1ec004b194 100644 --- a/indra/newview/skins/default/xui/en/notifications.xml +++ b/indra/newview/skins/default/xui/en/notifications.xml @@ -1402,6 +1402,16 @@ You have added "[LANDMARK_NAME]" to your [FOLDER_NAME] folder.    </notification>    <notification +   icon="alert.tga" +   name="LandmarkAlreadyExists" +   type="alert"> +You already have a landmark for this location. +    <usetemplate +     name="okbutton" +     yestext="OK"/> +  </notification> + +  <notification     icon="alertmodal.tga"     name="CannotCreateLandmarkNotOwner"     type="alertmodal"> | 
