aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMcCabe Maxsted2011-04-13 19:29:41 -0700
committerMcCabe Maxsted2011-04-13 19:29:41 -0700
commitecd53d5e58b84eef29a1741ee2522ce7bc9271b4 (patch)
treea945beac883ba8d524cf3f063c1aea15f0c30d56
parentPorted Radar v9 patch from Henri Beauchamp (et al.) to Imp, placed it in the ... (diff)
downloadmeta-impy-ecd53d5e58b84eef29a1741ee2522ce7bc9271b4.zip
meta-impy-ecd53d5e58b84eef29a1741ee2522ce7bc9271b4.tar.gz
meta-impy-ecd53d5e58b84eef29a1741ee2522ce7bc9271b4.tar.bz2
meta-impy-ecd53d5e58b84eef29a1741ee2522ce7bc9271b4.tar.xz
Use the mini-map radar prefs for the full radar window
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llfloateravatarlist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llfloateravatarlist.cpp b/linden/indra/newview/llfloateravatarlist.cpp
index 59cd278..2346e94 100644
--- a/linden/indra/newview/llfloateravatarlist.cpp
+++ b/linden/indra/newview/llfloateravatarlist.cpp
@@ -93,7 +93,7 @@ void chat_avatar_status(std::string name, LLUUID key, ERadarAlertType type, bool
93 switch(type) 93 switch(type)
94 { 94 {
95 case ALERT_TYPE_SIM: 95 case ALERT_TYPE_SIM:
96 if (gSavedSettings.getBOOL("RadarAlertSim")) 96 if (gSavedSettings.getBOOL("MiniMapNotifySimRange"))
97 { 97 {
98 chat.mText = name+" has "+(entering ? "entered" : "left")+" the sim."; 98 chat.mText = name+" has "+(entering ? "entered" : "left")+" the sim.";
99 } 99 }
@@ -111,7 +111,7 @@ void chat_avatar_status(std::string name, LLUUID key, ERadarAlertType type, bool
111 } 111 }
112 break; 112 break;
113 case ALERT_TYPE_CHATRANGE: 113 case ALERT_TYPE_CHATRANGE:
114 if (gSavedSettings.getBOOL("RadarAlertChatRange")) 114 if (gSavedSettings.getBOOL("MiniMapNotifyChatRange"))
115 { 115 {
116 chat.mText = name+" has "+(entering ? "entered" : "left")+" chat range."; 116 chat.mText = name+" has "+(entering ? "entered" : "left")+" chat range.";
117 } 117 }