diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-02-09 01:59:15 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-02-09 01:59:15 +0200 |
commit | d12514af8193888f9eb66bb92a9c2ac3d4e0e56e (patch) | |
tree | 5aa45a1a417b80e236eed7bee5417cbc338270e5 /indra/newview/skins/default | |
parent | 74d3f9d017a424d69bfc256ecc1062fdaa3b18c3 (diff) |
SL-14797 Normalize right-click menus on Landmarks & Picks Part#3
Diffstat (limited to 'indra/newview/skins/default')
-rw-r--r-- | indra/newview/skins/default/xui/en/menu_teleport_history_item.xml | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/indra/newview/skins/default/xui/en/menu_teleport_history_item.xml b/indra/newview/skins/default/xui/en/menu_teleport_history_item.xml index f939c3996d..52da591e35 100644 --- a/indra/newview/skins/default/xui/en/menu_teleport_history_item.xml +++ b/indra/newview/skins/default/xui/en/menu_teleport_history_item.xml @@ -7,20 +7,31 @@ layout="topleft" name="Teleport"> <menu_item_call.on_click - function="TeleportHistory.Teleport" /> + function="TeleportHistory.Action" + parameter="teleport" /> </menu_item_call> <menu_item_call - label="More Information" + label="View" layout="topleft" name="More Information"> <menu_item_call.on_click - function="TeleportHistory.MoreInformation" /> + function="TeleportHistory.Action" + parameter="view" /> + </menu_item_call> + <menu_item_call + label="Show on map" + layout="topleft" + name="show_on_map"> + <menu_item_call.on_click + function="TeleportHistory.Action" + parameter="show_on_map" /> </menu_item_call> <menu_item_call label="Copy SLurl" layout="topleft" name="CopyToClipboard"> <menu_item_call.on_click - function="TeleportHistory.CopyToClipboard" /> + function="TeleportHistory.Action" + parameter="copy_slurl" /> </menu_item_call> </context_menu> |