diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llprefsadvanced.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/newview/llprefsadvanced.cpp b/linden/indra/newview/llprefsadvanced.cpp index 087acc9..2311896 100644 --- a/linden/indra/newview/llprefsadvanced.cpp +++ b/linden/indra/newview/llprefsadvanced.cpp | |||
@@ -73,6 +73,7 @@ BOOL LLPrefsAdvanced::postBuild() | |||
73 | static BOOL* sShowClientNameTag = rebind_llcontrol<BOOL>("ShowClientNameTag", &gSavedSettings, true); | 73 | static BOOL* sShowClientNameTag = rebind_llcontrol<BOOL>("ShowClientNameTag", &gSavedSettings, true); |
74 | childSetValue("client_name_tag_check", (*sShowClientNameTag)); | 74 | childSetValue("client_name_tag_check", (*sShowClientNameTag)); |
75 | childSetValue("client_name_hover_check", gSavedSettings.getBOOL("ShowClientNameHoverTip")); | 75 | childSetValue("client_name_hover_check", gSavedSettings.getBOOL("ShowClientNameHoverTip")); |
76 | childSetValue("client_colors_check", gSavedSettings.getBOOL("ShowClientColor")); | ||
76 | childSetValue("client_name_tag_broadcast_check", gSavedSettings.getBOOL("ShowMyClientTagToOthers")); | 77 | childSetValue("client_name_tag_broadcast_check", gSavedSettings.getBOOL("ShowMyClientTagToOthers")); |
77 | 78 | ||
78 | childSetValue("appearance_anim_check", gSavedSettings.getBOOL("AppearanceAnimate")); | 79 | childSetValue("appearance_anim_check", gSavedSettings.getBOOL("AppearanceAnimate")); |
@@ -117,6 +118,7 @@ void LLPrefsAdvanced::apply() | |||
117 | gSavedSettings.setBOOL("DisableTeleportScreens", childGetValue("disable_tp_screen_check")); | 118 | gSavedSettings.setBOOL("DisableTeleportScreens", childGetValue("disable_tp_screen_check")); |
118 | gSavedSettings.setBOOL("ShowClientNameTag", childGetValue("client_name_tag_check")); | 119 | gSavedSettings.setBOOL("ShowClientNameTag", childGetValue("client_name_tag_check")); |
119 | gSavedSettings.setBOOL("ShowClientNameHoverTip", childGetValue("client_name_hover_check")); | 120 | gSavedSettings.setBOOL("ShowClientNameHoverTip", childGetValue("client_name_hover_check")); |
121 | gSavedSettings.setBOOL("ShowClientColor", childGetValue("client_colors_check")); | ||
120 | 122 | ||
121 | gSavedSettings.setBOOL("AppearanceAnimate", childGetValue("appearance_anim_check")); | 123 | gSavedSettings.setBOOL("AppearanceAnimate", childGetValue("appearance_anim_check")); |
122 | gSavedSettings.setBOOL("LanguageIsPublic", childGetValue("language_is_public")); | 124 | gSavedSettings.setBOOL("LanguageIsPublic", childGetValue("language_is_public")); |
@@ -332,4 +334,3 @@ void LLPrefsAdvanced::onSaveAnyoneCloudButton(void * data) | |||
332 | std::string filename = gDirUtilp->getExpandedFilename(LL_PATH_APP_SETTINGS, "cloud.xml"); | 334 | std::string filename = gDirUtilp->getExpandedFilename(LL_PATH_APP_SETTINGS, "cloud.xml"); |
333 | LLVOAvatar::saveCloud(filename, LLVOAvatar::sCloud); | 335 | LLVOAvatar::saveCloud(filename, LLVOAvatar::sCloud); |
334 | } | 336 | } |
335 | |||