diff options
author | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-03-12 21:53:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-12 21:53:38 +0200 |
commit | 6ed3a1670cc976975942c1c7e57fb30298669ab7 (patch) | |
tree | bce76b11861e1db27c94e278a93549c74bf51692 /indra/newview/skins/default/xui/en | |
parent | 326055ba82c22fedde186c6a56bafd4fe87e613a (diff) |
SL-20735 Fix blury profile pictures #2 (#963)
Scaling was added to thumbnail images as a measure of memory preservation and said scaling doesn't work well when larger images are needed so had to remake profile images to no longer use thumbnails.
Diffstat (limited to 'indra/newview/skins/default/xui/en')
3 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/skins/default/xui/en/floater_profile_texture.xml b/indra/newview/skins/default/xui/en/floater_profile_texture.xml index 3b351a3325..7c2dc11e7d 100644 --- a/indra/newview/skins/default/xui/en/floater_profile_texture.xml +++ b/indra/newview/skins/default/xui/en/floater_profile_texture.xml @@ -27,7 +27,7 @@ follows="left|top" auto_resize="true" layout="topleft"> - <icon + <profile_image name="profile_pic" image_name="Generic_Person_Large" layout="topleft" 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 6ae4890777..7315ba3cfe 100644 --- a/indra/newview/skins/default/xui/en/panel_profile_firstlife.xml +++ b/indra/newview/skins/default/xui/en/panel_profile_firstlife.xml @@ -19,7 +19,7 @@ layout="topleft" visible="false" /> - <thumbnail + <profile_image name="real_world_pic" image_name="Generic_Person_Large" show_loading="false" diff --git a/indra/newview/skins/default/xui/en/panel_profile_secondlife.xml b/indra/newview/skins/default/xui/en/panel_profile_secondlife.xml index 307b7b83ef..173312960c 100644 --- a/indra/newview/skins/default/xui/en/panel_profile_secondlife.xml +++ b/indra/newview/skins/default/xui/en/panel_profile_secondlife.xml @@ -71,7 +71,7 @@ Account: [ACCTTYPE] auto_resize="false" user_resize="false"> - <thumbnail + <profile_image name="2nd_life_pic" image_name="Generic_Person_Large" show_loading="false" |