diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-06-09 00:22:02 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-06-09 00:22:02 +0300 |
commit | ababcc700cc956c4c024f03bf69ca2fdb3e7baed (patch) | |
tree | 324076e5fefe32bf34f530e24a5b6baaa7ffc735 /indra/newview/skins/default/xui | |
parent | 8ef8497add2007d29de1cb75b55e77349a7c717f (diff) |
SL-17532 Ability to pick inventory image as a profile image
Diffstat (limited to 'indra/newview/skins/default/xui')
3 files changed, 28 insertions, 1 deletions
diff --git a/indra/newview/skins/default/xui/en/menu_avatar_self.xml b/indra/newview/skins/default/xui/en/menu_avatar_self.xml index 500b6fffc2..20f3ad080b 100644 --- a/indra/newview/skins/default/xui/en/menu_avatar_self.xml +++ b/indra/newview/skins/default/xui/en/menu_avatar_self.xml @@ -290,4 +290,11 @@ <menu_item_call.on_visible function="EnableMuteParticle" /> </menu_item_call> + <menu_item_separator/> + <menu_item_call label="View Profile" + layout="topleft" + name="show_avatar_profile"> + <menu_item_call.on_click + function="Avatar.ToggleMyProfile" /> + </menu_item_call> </context_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 552c96c60c..d0bd4000f8 100644 --- a/indra/newview/skins/default/xui/en/menu_profile_self.xml +++ b/indra/newview/skins/default/xui/en/menu_profile_self.xml @@ -19,6 +19,17 @@ parameter="edit_partner"/> </menu_item_call> <menu_item_call + label="Upload Photo" + layout="topleft" + name="upload_photo"> + <menu_item_call.on_click + function="Profile.Commit" + parameter="upload_photo"/> + <menu_item_call.on_enable + function="Profile.EnableItem" + parameter="upload_photo"/> + </menu_item_call> + <menu_item_call label="Change Photo" layout="topleft" name="change_photo"> diff --git a/indra/newview/skins/default/xui/en/panel_profile_firstlife.xml b/indra/newview/skins/default/xui/en/panel_profile_firstlife.xml index 90e0f1bc05..ca1e405a62 100644 --- a/indra/newview/skins/default/xui/en/panel_profile_firstlife.xml +++ b/indra/newview/skins/default/xui/en/panel_profile_firstlife.xml @@ -39,8 +39,17 @@ visible="false"/> <button name="fl_upload_image" + label="Upload Photo" + top="102" + left="175" + height="20" + width="120" + follows="top|left" + layout="topleft"/> + <button + name="fl_change_image" label="Change Photo" - top="127" + top_pad="5" left="175" height="20" width="120" |