diff options
author | leyla_linden <none@none> | 2011-01-28 12:22:51 -0800 |
---|---|---|
committer | leyla_linden <none@none> | 2011-01-28 12:22:51 -0800 |
commit | ad54a46ba2bc3886f9663bcaa4a6757fac733af7 (patch) | |
tree | c3762959bcfa7044bb3578b55eb2802115499027 /indra/newview/llfloatertools.cpp | |
parent | ba8fcdcd19c59e7b34bad87948a120f4ad67c4b8 (diff) |
SH-841 Hide physics parameters in build tools when connected to a region that doesn't support additional physics parameters.
Diffstat (limited to 'indra/newview/llfloatertools.cpp')
-rw-r--r-- | indra/newview/llfloatertools.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llfloatertools.cpp b/indra/newview/llfloatertools.cpp index 49e24f8e3d..c9b99d83ff 100644 --- a/indra/newview/llfloatertools.cpp +++ b/indra/newview/llfloatertools.cpp @@ -32,6 +32,7 @@ #include "llcoord.h" //#include "llgl.h" +#include "llagent.h" #include "llagentcamera.h" #include "llbutton.h" #include "llcheckboxctrl.h" @@ -463,7 +464,8 @@ void LLFloaterTools::refresh() childSetEnabled("linked_set_cost", have_selection); childSetEnabled("object_cost", have_selection); - bool enable_mesh = gSavedSettings.getBOOL("MeshEnabled"); + bool enable_mesh = gSavedSettings.getBOOL("MeshEnabled") && + !gAgent.getRegion()->getCapability("GetMesh").empty(); getChildView("linked_set_count")->setVisible(enable_mesh); getChildView("linked_set_cost")->setVisible(enable_mesh); |