diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-07-19 18:54:48 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-07-19 18:54:48 +0800 |
commit | cc1421d80d64d3802ebf0842355613251121f0be (patch) | |
tree | 1807070f8acac679a707157f0c694eef2a9e768d /indra/newview/skins | |
parent | 5deb0352955c9d8c3caf2ffb3a3aaf53f617c8ef (diff) |
Copy profile link to clipboard in profile actions
https://megapahit.com/show_bug.cgi?id=47
Diffstat (limited to 'indra/newview/skins')
-rw-r--r-- | indra/newview/skins/default/xui/en/menu_profile_other.xml | 8 | ||||
-rw-r--r-- | indra/newview/skins/default/xui/en/menu_profile_self.xml | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/indra/newview/skins/default/xui/en/menu_profile_other.xml b/indra/newview/skins/default/xui/en/menu_profile_other.xml index 101ae33778..a505b38087 100644 --- a/indra/newview/skins/default/xui/en/menu_profile_other.xml +++ b/indra/newview/skins/default/xui/en/menu_profile_other.xml @@ -168,4 +168,12 @@ function="Profile.Commit" parameter="copy_user_id"/> </menu_item_call> + <menu_item_call + label="Copy Profile Link" + layout="topleft" + name="copy_link"> + <menu_item_call.on_click + function="Profile.Commit" + parameter="copy_profile_link"/> + </menu_item_call> </toggleable_menu> diff --git a/indra/newview/skins/default/xui/en/menu_profile_self.xml b/indra/newview/skins/default/xui/en/menu_profile_self.xml index 1b21c7ae61..0a03d7ac2b 100644 --- a/indra/newview/skins/default/xui/en/menu_profile_self.xml +++ b/indra/newview/skins/default/xui/en/menu_profile_self.xml @@ -82,4 +82,12 @@ function="Profile.Commit" parameter="copy_user_id"/> </menu_item_call> + <menu_item_call + label="Copy Profile Link" + layout="topleft" + name="copy_link"> + <menu_item_call.on_click + function="Profile.Commit" + parameter="copy_profile_link"/> + </menu_item_call> </toggleable_menu> |