summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelavatar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llpanelavatar.cpp')
-rw-r--r--indra/newview/llpanelavatar.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llpanelavatar.cpp b/indra/newview/llpanelavatar.cpp
index 7c8acd3947..9a0eef9a10 100644
--- a/indra/newview/llpanelavatar.cpp
+++ b/indra/newview/llpanelavatar.cpp
@@ -570,7 +570,8 @@ LLPanelAvatarWeb::~LLPanelAvatarWeb()
void LLPanelAvatarWeb::enableControls(BOOL self)
{
childSetEnabled("url_edit",self);
- childSetVisible("status_text",!self);
+ childSetVisible("status_text",!self && !mURL.empty());
+ childSetText("status_text", LLString::null);
}
void LLPanelAvatarWeb::setWebURL(std::string url)
@@ -600,6 +601,9 @@ void LLPanelAvatarWeb::setWebURL(std::string url)
{
childSetVisible("profile_html",false);
}
+
+ BOOL own_avatar = (getPanelAvatar()->getAvatarID() == gAgent.getID() );
+ childSetVisible("status_text",!own_avatar && !mURL.empty());
}