diff options
| author | Rick Pasetto <rick@lindenlab.com> | 2010-01-21 18:40:37 -0800 |
|---|---|---|
| committer | Rick Pasetto <rick@lindenlab.com> | 2010-01-21 18:40:37 -0800 |
| commit | dc47f52e9f5ab095737fedf68d22c8228140c71b (patch) | |
| tree | b51ec723b3be86c1c3afc50f9695bb535265a6ee /indra/newview/llinventorybridge.cpp | |
| parent | bc0ed2a02b42ae485b2f7a08f6ec3a0c1ab85778 (diff) | |
| parent | 76a044faafdc5a92ac44059529bea90649889621 (diff) | |
merge
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
| -rw-r--r-- | indra/newview/llinventorybridge.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 099f863dc9..1b1f615a57 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -5070,8 +5070,12 @@ void LLLandmarkBridgeAction::doIt() // Opening (double-clicking) a landmark immediately teleports, // but warns you the first time. LLSD payload; - payload["asset_id"] = item->getAssetUUID(); - LLNotificationsUtil::add("TeleportFromLandmark", LLSD(), payload); + payload["asset_id"] = item->getAssetUUID(); + + LLSD args; + args["LOCATION"] = item->getDisplayName(); + + LLNotificationsUtil::add("TeleportFromLandmark", args, payload); } LLInvFVBridgeAction::doIt(); |
