aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterbeacons.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llfloaterbeacons.cpp')
-rw-r--r--linden/indra/newview/llfloaterbeacons.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/linden/indra/newview/llfloaterbeacons.cpp b/linden/indra/newview/llfloaterbeacons.cpp
index aa89780..7c40931 100644
--- a/linden/indra/newview/llfloaterbeacons.cpp
+++ b/linden/indra/newview/llfloaterbeacons.cpp
@@ -54,6 +54,7 @@ LLFloaterBeacons::LLFloaterBeacons(const LLSD& seed)
54 LLPipeline::setRenderScriptedTouchBeacons(gSavedSettings.getBOOL("scripttouchbeacon")); 54 LLPipeline::setRenderScriptedTouchBeacons(gSavedSettings.getBOOL("scripttouchbeacon"));
55 LLPipeline::setRenderScriptedBeacons( gSavedSettings.getBOOL("scriptsbeacon")); 55 LLPipeline::setRenderScriptedBeacons( gSavedSettings.getBOOL("scriptsbeacon"));
56 LLPipeline::setRenderPhysicalBeacons( gSavedSettings.getBOOL("physicalbeacon")); 56 LLPipeline::setRenderPhysicalBeacons( gSavedSettings.getBOOL("physicalbeacon"));
57 LLPipeline::setRenderMOAPBeacons( gSavedSettings.getBOOL("moapbeacon"));
57 LLPipeline::setRenderSoundBeacons( gSavedSettings.getBOOL("soundsbeacon")); 58 LLPipeline::setRenderSoundBeacons( gSavedSettings.getBOOL("soundsbeacon"));
58 LLPipeline::setRenderParticleBeacons( gSavedSettings.getBOOL("particlesbeacon")); 59 LLPipeline::setRenderParticleBeacons( gSavedSettings.getBOOL("particlesbeacon"));
59 LLPipeline::setRenderHighlights( gSavedSettings.getBOOL("renderhighlights")); 60 LLPipeline::setRenderHighlights( gSavedSettings.getBOOL("renderhighlights"));
@@ -67,6 +68,7 @@ BOOL LLFloaterBeacons::postBuild()
67 childSetCommitCallback("physical", onClickUICheck, this); 68 childSetCommitCallback("physical", onClickUICheck, this);
68 childSetCommitCallback("sounds", onClickUICheck, this); 69 childSetCommitCallback("sounds", onClickUICheck, this);
69 childSetCommitCallback("particles", onClickUICheck, this); 70 childSetCommitCallback("particles", onClickUICheck, this);
71 childSetCommitCallback("moap", onClickUICheck, this);
70 childSetCommitCallback("highlights", onClickUICheck, this); 72 childSetCommitCallback("highlights", onClickUICheck, this);
71 childSetCommitCallback("beacons", onClickUICheck, this); 73 childSetCommitCallback("beacons", onClickUICheck, this);
72 return TRUE; 74 return TRUE;
@@ -132,6 +134,7 @@ void LLFloaterBeacons::onClickUICheck(LLUICtrl *ctrl, void* data)
132 else if(name == "physical") LLPipeline::setRenderPhysicalBeacons(check->get()); 134 else if(name == "physical") LLPipeline::setRenderPhysicalBeacons(check->get());
133 else if(name == "sounds") LLPipeline::setRenderSoundBeacons(check->get()); 135 else if(name == "sounds") LLPipeline::setRenderSoundBeacons(check->get());
134 else if(name == "particles") LLPipeline::setRenderParticleBeacons(check->get()); 136 else if(name == "particles") LLPipeline::setRenderParticleBeacons(check->get());
137 else if(name == "moap") LLPipeline::setRenderMOAPBeacons(check->get());
135 else if(name == "highlights") 138 else if(name == "highlights")
136 { 139 {
137 LLPipeline::toggleRenderHighlights(NULL); 140 LLPipeline::toggleRenderHighlights(NULL);