diff options
| author | Jonathan Yap <none@none> | 2011-03-12 11:43:20 -0500 | 
|---|---|---|
| committer | Jonathan Yap <none@none> | 2011-03-12 11:43:20 -0500 | 
| commit | 834d0f1ed612c8644e642103096daf7f0b0f44c9 (patch) | |
| tree | 8e4bb7276ad007e045fc0434e4528d27c67fc088 | |
| parent | 5ef27b9f3f6e672ccc8126d7bed4c904f12d1186 (diff) | |
STORM-1019 Fixed problem with beacon message display and changed beacon message order to corresponed with menu order per Ardy Lay's suggestion
| -rw-r--r-- | indra/newview/llviewerwindow.cpp | 25 | 
1 files changed, 15 insertions, 10 deletions
| diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index 031fc05619..37bdf4dd0b 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -564,29 +564,33 @@ public:  		// only display these messages if we are actually rendering beacons at this moment  		if (LLPipeline::getRenderBeacons(NULL) && LLFloaterReg::instanceVisible("beacons"))  		{ -			if (LLPipeline::getRenderParticleBeacons(NULL)) +			if (LLPipeline::getRenderMOAPBeacons(NULL))  			{ -				addText(xpos, ypos, "Viewing particle beacons (blue)"); +				addText(xpos, ypos, "Viewing media beacons (white)");  				ypos += y_inc;  			} +  			if (LLPipeline::toggleRenderTypeControlNegated((void*)LLPipeline::RENDER_TYPE_PARTICLES))  			{  				addText(xpos, ypos, "Hiding particles");  				ypos += y_inc;  			} -			if (LLPipeline::getRenderPhysicalBeacons(NULL)) + +			if (LLPipeline::getRenderParticleBeacons(NULL))  			{ -				addText(xpos, ypos, "Viewing physical object beacons (green)"); +				addText(xpos, ypos, "Viewing particle beacons (blue)");  				ypos += y_inc;  			} -			if (LLPipeline::getRenderScriptedBeacons(NULL)) + +			if (LLPipeline::getRenderSoundBeacons(NULL))  			{ -				addText(xpos, ypos, "Viewing scripted object beacons (red)"); +				addText(xpos, ypos, "Viewing sound beacons (yellow)");  				ypos += y_inc;  			} -			if (LLPipeline::getRenderMOAPBeacons(NULL)) + +			if (LLPipeline::getRenderScriptedBeacons(NULL))  			{ -				addText(xpos, ypos, "Viewing media beacons (white)"); +				addText(xpos, ypos, "Viewing scripted object beacons (red)");  				ypos += y_inc;  			}  			else @@ -595,9 +599,10 @@ public:  					addText(xpos, ypos, "Viewing scripted object with touch function beacons (red)");  					ypos += y_inc;  				} -			if (LLPipeline::getRenderSoundBeacons(NULL)) + +			if (LLPipeline::getRenderPhysicalBeacons(NULL))  			{ -				addText(xpos, ypos, "Viewing sound beacons (yellow)"); +				addText(xpos, ypos, "Viewing physical object beacons (green)");  				ypos += y_inc;  			}  		} | 
