diff options
Diffstat (limited to 'linden/indra/newview')
-rw-r--r-- | linden/indra/newview/llprefsadvanced.cpp | 5 | ||||
-rw-r--r-- | linden/indra/newview/skins/default/xui/en-us/panel_preferences_advanced.xml | 14 |
2 files changed, 19 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 | ||
diff --git a/linden/indra/newview/skins/default/xui/en-us/panel_preferences_advanced.xml b/linden/indra/newview/skins/default/xui/en-us/panel_preferences_advanced.xml index 7528809..ce2bbc1 100644 --- a/linden/indra/newview/skins/default/xui/en-us/panel_preferences_advanced.xml +++ b/linden/indra/newview/skins/default/xui/en-us/panel_preferences_advanced.xml | |||
@@ -94,6 +94,20 @@ | |||
94 | mouse_opaque="true" name="language_is_public" | 94 | mouse_opaque="true" name="language_is_public" |
95 | radio_style="false" tool_tip="This lets in-world objects know your preferred language." | 95 | radio_style="false" tool_tip="This lets in-world objects know your preferred language." |
96 | width="256" /> | 96 | width="256" /> |
97 | |||
98 | <check_box bottom_delta="-25" enabled="true" | ||
99 | follows="left|top" font="SansSerifSmall" height="16" hidden="false" | ||
100 | initial_value="false" label="Use MU* pose style chat and IM" left="12" | ||
101 | mouse_opaque="true" name="allow_mupose" | ||
102 | radio_style="false" tool_tip="Use MU* pose style in chat and IM (with ':' as a synonymous to '/me ')." | ||
103 | width="256" /> | ||
104 | <check_box bottom_delta="0" enabled="true" | ||
105 | follows="left|top" font="SansSerifSmall" height="16" hidden="false" | ||
106 | initial_value="false" label="Auto-close OOC chat" left_delta="180" | ||
107 | mouse_opaque="true" name="auto_close_ooc" | ||
108 | radio_style="false" tool_tip="Auto-close OOC chat (i.e. add )) if not found and (( was used)." | ||
109 | width="256" /> | ||
110 | |||
97 | <!-- Uncomment when we start using the crash logger - MC --> | 111 | <!-- Uncomment when we start using the crash logger - MC --> |
98 | <!--<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 112 | <!--<text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
99 | bottom_delta="-30" drop_shadow_visible="true" enabled="true" follows="left|top" | 113 | bottom_delta="-30" drop_shadow_visible="true" enabled="true" follows="left|top" |