diff options
author | Dave SIMmONs <simon@lindenlab.com> | 2011-03-21 10:22:13 -0700 |
---|---|---|
committer | Dave SIMmONs <simon@lindenlab.com> | 2011-03-21 10:22:13 -0700 |
commit | 15404a3c5d50f5f106f5bc443d16e172c54e3e0f (patch) | |
tree | 2e25cb610683043143bf8b871e2ddec1021039d3 /indra/llcommon/llavatarname.cpp | |
parent | 07717a60dc3bce644dc08d7e8b2fa74715b9c7c0 (diff) | |
parent | be9bae601cfba3a94dfdcce4a6770cbb328681b6 (diff) |
Merge again
Diffstat (limited to 'indra/llcommon/llavatarname.cpp')
-rw-r--r-- | indra/llcommon/llavatarname.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/indra/llcommon/llavatarname.cpp b/indra/llcommon/llavatarname.cpp index ad1845d387..ba3dd6d6b4 100644 --- a/indra/llcommon/llavatarname.cpp +++ b/indra/llcommon/llavatarname.cpp @@ -90,14 +90,16 @@ void LLAvatarName::fromLLSD(const LLSD& sd) std::string LLAvatarName::getCompleteName() const { std::string name; - if (!mUsername.empty()) + if (mUsername.empty() || mIsDisplayNameDefault) + // If the display name feature is off + // OR this particular display name is defaulted (i.e. based on user name), + // then display only the easier to read instance of the person's name. { - name = mDisplayName + " (" + mUsername + ")"; + name = mDisplayName; } else { - // ...display names are off, legacy name is in mDisplayName - name = mDisplayName; + name = mDisplayName + " (" + mUsername + ")"; } return name; } |