summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorVadim ProductEngine <vsavchuk@productengine.com>2011-06-07 19:11:50 +0300
committerVadim ProductEngine <vsavchuk@productengine.com>2011-06-07 19:11:50 +0300
commit3519c6cd6bc0e8b572c3f92ba8baa4e44e0fec50 (patch)
tree53e9cba4fba39a06e8d4878199cd4c72a2490a1a /indra
parentf69912267aa73e158d34b75797410dd6b4694084 (diff)
STORM-1255 WIP Disable editing region skies until the workflow is clear enough.
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llfloatereditsky.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llfloatereditsky.cpp b/indra/newview/llfloatereditsky.cpp
index 538d6cfa39..7b8e3b89ca 100644
--- a/indra/newview/llfloatereditsky.cpp
+++ b/indra/newview/llfloatereditsky.cpp
@@ -739,7 +739,11 @@ void LLFloaterEditSky::refreshSkyPresetsList()
std::string item_title = key.name;
if (key.scope == LLEnvKey::SCOPE_REGION)
{
+#if 1 // Disable editing region skies until the workflow is clear enough.
+ continue;
+#else
item_title += " (" + region_name + ")";
+#endif
}
mSkyPresetCombo->add(item_title, key.toLLSD());
}