diff options
author | McCabe Maxsted | 2010-04-25 20:59:01 -0700 |
---|---|---|
committer | McCabe Maxsted | 2010-04-25 20:59:01 -0700 |
commit | 7c699c5091fc36ee79e2859686f3a15a8e8ecbae (patch) | |
tree | 63b067626ca64d8be5cff2d01cb11b55ed80e2d1 /linden/indra/newview/llvoavatar.cpp | |
parent | Fixed next/prev buttons in search window (diff) | |
download | meta-impy-7c699c5091fc36ee79e2859686f3a15a8e8ecbae.zip meta-impy-7c699c5091fc36ee79e2859686f3a15a8e8ecbae.tar.gz meta-impy-7c699c5091fc36ee79e2859686f3a15a8e8ecbae.tar.bz2 meta-impy-7c699c5091fc36ee79e2859686f3a15a8e8ecbae.tar.xz |
Added checkbox for broadcasting client tag to Preferences > Advanced (and fixed the show client in name tags checkbox)
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llvoavatar.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/linden/indra/newview/llvoavatar.cpp b/linden/indra/newview/llvoavatar.cpp index 0f1e2a3..bf96ad1 100644 --- a/linden/indra/newview/llvoavatar.cpp +++ b/linden/indra/newview/llvoavatar.cpp | |||
@@ -3480,7 +3480,10 @@ void LLVOAvatar::idleUpdateNameTag(const LLVector3& root_pos_last) | |||
3480 | if(!mIsSelf) //don't know your own client ? | 3480 | if(!mIsSelf) //don't know your own client ? |
3481 | { | 3481 | { |
3482 | new_name = TRUE; //lol or see the last client used | 3482 | new_name = TRUE; //lol or see the last client used |
3483 | resolveClient(avatar_name_color,client, this); | 3483 | if (gSavedSettings.getBOOL("ShowClientNameTag")) |
3484 | { | ||
3485 | resolveClient(avatar_name_color,client, this); | ||
3486 | } | ||
3484 | } | 3487 | } |
3485 | avatar_name_color.setAlpha(alpha); | 3488 | avatar_name_color.setAlpha(alpha); |
3486 | mNameText->setColor(avatar_name_color); | 3489 | mNameText->setColor(avatar_name_color); |