diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llpanelavatar.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/indra/newview/llpanelavatar.cpp b/indra/newview/llpanelavatar.cpp index fe5b20813a..48dd5513bd 100644 --- a/indra/newview/llpanelavatar.cpp +++ b/indra/newview/llpanelavatar.cpp @@ -635,6 +635,9 @@ void LLPanelAvatarProfile::fillCommonData(const LLAvatarData* avatar_data)  	childSetValue("2nd_life_pic", avatar_data->image_id);  	childSetValue("real_world_pic", avatar_data->fl_image_id);  	childSetValue("homepage_edit", avatar_data->profile_url); + +	// Hide home page textbox if no page was set to fix "homepage URL appears clickable without URL - EXT-4734" +	childSetVisible("homepage_edit", !avatar_data->profile_url.empty());  }  void LLPanelAvatarProfile::fillPartnerData(const LLAvatarData* avatar_data) | 
