summaryrefslogtreecommitdiff
path: root/indra/newview/lllandmarkactions.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2026-01-13 23:57:12 +0200
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2026-01-14 18:52:17 +0200
commit7d30aea27edffd5793660fae66dcc500e8d97a0a (patch)
treefbf9fd1515df39c3295ebbd9cc24963c34de77b8 /indra/newview/lllandmarkactions.cpp
parentd718b2e5bd7e94660a1104d467a69d2714f12f0c (diff)
#3612 "Copy SLURL" from Favorites bar not working #3
Diffstat (limited to 'indra/newview/lllandmarkactions.cpp')
-rw-r--r--indra/newview/lllandmarkactions.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/newview/lllandmarkactions.cpp b/indra/newview/lllandmarkactions.cpp
index 73425e9f4c..741d0622c5 100644
--- a/indra/newview/lllandmarkactions.cpp
+++ b/indra/newview/lllandmarkactions.cpp
@@ -385,7 +385,14 @@ void LLLandmarkActions::copySLURLtoClipboard(const LLUUID& landmarkInventoryItem
{
LLVector3d global_pos;
landmark->getGlobalPos(global_pos);
- LLLandmarkActions::getSLURLfromPosGlobal(global_pos,&copy_slurl_to_clipboard_callback,true);
+ if (!global_pos.isExactlyZero())
+ {
+ LLLandmarkActions::getSLURLfromPosGlobal(global_pos, &copy_slurl_to_clipboard_callback, true);
+ }
+ else
+ {
+ LLNotificationsUtil::add("LandmarkLocationUnknown");
+ }
}
}