From 102bf181953a21c7c39ae26898ad4485ffd360c8 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Wed, 7 Aug 2013 11:02:44 -0400 Subject: [PATCH 1/3] Typo fix --- indra/newview/app_settings/settings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index e82bf9e36..888ac4425 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -5918,7 +5918,7 @@ This should be as low as possible, but too low may break functionality EnableGestureSoundsSelf Comment - Play sounds from your gestures when EnableGestureSounds is false. (Useless otherewise) + Play sounds from your gestures when EnableGestureSounds is false. (Useless otherwise) Persist 1 Type From b17cebd87f8634a1aabdd38935aa66cb93721af7 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Wed, 7 Aug 2013 13:55:38 -0400 Subject: [PATCH 2/3] Allow multi select on the group members list in the general tab (How did this slip by me?) --- indra/newview/skins/default/xui/en-us/panel_group_general.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/skins/default/xui/en-us/panel_group_general.xml b/indra/newview/skins/default/xui/en-us/panel_group_general.xml index 21e3057c0..6f42f18cc 100644 --- a/indra/newview/skins/default/xui/en-us/panel_group_general.xml +++ b/indra/newview/skins/default/xui/en-us/panel_group_general.xml @@ -74,7 +74,7 @@ Hover your mouse over the options for more help. (Owners are shown in bold) From cc534487c0261ad08c1f329ddd150f4144ee6ca1 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Thu, 8 Aug 2013 00:06:32 -0400 Subject: [PATCH 3/3] Fix StockMaster's issue of the radar alerting ten seconds after avatars have departed --- indra/newview/llfloateravatarlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llfloateravatarlist.cpp b/indra/newview/llfloateravatarlist.cpp index 302c4d153..7b4d9f990 100644 --- a/indra/newview/llfloateravatarlist.cpp +++ b/indra/newview/llfloateravatarlist.cpp @@ -69,7 +69,7 @@ /** * @brief How long to keep people who are gone in the list and in memory. */ -const F32 DEAD_KEEP_TIME = 10.0f; +const F32 DEAD_KEEP_TIME = 0.5f; extern U32 gFrameCount;