diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llprefsadvanced.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/linden/indra/newview/llprefsadvanced.cpp b/linden/indra/newview/llprefsadvanced.cpp index 34c8eb2..60c936a 100644 --- a/linden/indra/newview/llprefsadvanced.cpp +++ b/linden/indra/newview/llprefsadvanced.cpp | |||
@@ -67,6 +67,9 @@ BOOL LLPrefsAdvanced::postBuild() | |||
67 | childSetValue("appearance_anim_check", gSavedSettings.getBOOL("AppearanceAnimate")); | 67 | childSetValue("appearance_anim_check", gSavedSettings.getBOOL("AppearanceAnimate")); |
68 | childSetValue("legacy_pie_menu_checkbox", gSavedSettings.getBOOL("LegacyPieEnabled")); | 68 | childSetValue("legacy_pie_menu_checkbox", gSavedSettings.getBOOL("LegacyPieEnabled")); |
69 | childSetValue("language_is_public", gSavedSettings.getBOOL("LanguageIsPublic")); | 69 | childSetValue("language_is_public", gSavedSettings.getBOOL("LanguageIsPublic")); |
70 | childSetValue("allow_mupose", gSavedSettings.getBOOL("AllowMUpose")); | ||
71 | childSetValue("auto_close_ooc", gSavedSettings.getBOOL("AutoCloseOOC")); | ||
72 | |||
70 | childSetValue("lightshare_combo", | 73 | childSetValue("lightshare_combo", |
71 | LLSD((S32)gSavedSettings.getU32("LightShareAllowed"))); | 74 | LLSD((S32)gSavedSettings.getU32("LightShareAllowed"))); |
72 | 75 | ||
@@ -90,6 +93,8 @@ void LLPrefsAdvanced::apply() | |||
90 | gSavedSettings.setU32("SpeedRezInterval", childGetValue("speed_rez_interval_spinner").asReal()); | 93 | gSavedSettings.setU32("SpeedRezInterval", childGetValue("speed_rez_interval_spinner").asReal()); |
91 | gSavedSettings.setBOOL("AppearanceAnimate", childGetValue("appearance_anim_check")); | 94 | gSavedSettings.setBOOL("AppearanceAnimate", childGetValue("appearance_anim_check")); |
92 | gSavedSettings.setBOOL("LanguageIsPublic", childGetValue("language_is_public")); | 95 | gSavedSettings.setBOOL("LanguageIsPublic", childGetValue("language_is_public")); |
96 | gSavedSettings.setBOOL("AllowMUpose", childGetValue("allow_mupose")); | ||
97 | gSavedSettings.setBOOL("AutoCloseOOC", childGetValue("auto_close_ooc")); | ||
93 | gSavedSettings.setU32("LightShareAllowed", | 98 | gSavedSettings.setU32("LightShareAllowed", |
94 | (U32)childGetValue("lightshare_combo").asInteger()); | 99 | (U32)childGetValue("lightshare_combo").asInteger()); |
95 | 100 | ||