summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorJonathan Yap <jhwelch@gmail.com>2015-01-21 04:57:42 -0500
committerJonathan Yap <jhwelch@gmail.com>2015-01-21 04:57:42 -0500
commit60311c6409b2ec6590b0f08135c7715f982c94ea (patch)
tree995ada8bd34b9895dfbb65599c82958ec9a3e8bf /indra
parent58577702a8c185683e089afc3f7fbcbaaf40122c (diff)
STORM-2082 Put "Default" at the top of the non-Delete comboboxes.
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llfloatersaveprefpreset.cpp4
-rw-r--r--indra/newview/llpresetsmanager.cpp9
2 files changed, 3 insertions, 10 deletions
diff --git a/indra/newview/llfloatersaveprefpreset.cpp b/indra/newview/llfloatersaveprefpreset.cpp
index 610c701d8d..686a2f3269 100644
--- a/indra/newview/llfloatersaveprefpreset.cpp
+++ b/indra/newview/llfloatersaveprefpreset.cpp
@@ -70,7 +70,7 @@ void LLFloaterSavePrefPreset::onOpen(const LLSD& key)
setTitle(floater_title);
- EDefaultOptions option = DEFAULT_SHOW;
+ EDefaultOptions option = DEFAULT_TOP;
LLPresetsManager::getInstance()->setPresetNamesInComboBox(mSubdirectory, mPresetCombo, option);
onPresetNameEdited();
@@ -92,7 +92,7 @@ void LLFloaterSavePrefPreset::onBtnSave()
void LLFloaterSavePrefPreset::onPresetsListChange()
{
- EDefaultOptions option = DEFAULT_SHOW;
+ EDefaultOptions option = DEFAULT_TOP;
LLPresetsManager::getInstance()->setPresetNamesInComboBox(mSubdirectory, mPresetCombo, option);
}
diff --git a/indra/newview/llpresetsmanager.cpp b/indra/newview/llpresetsmanager.cpp
index e67ebcc0c6..205c5e6dfb 100644
--- a/indra/newview/llpresetsmanager.cpp
+++ b/indra/newview/llpresetsmanager.cpp
@@ -214,14 +214,7 @@ void LLPresetsManager::setPresetNamesInComboBox(const std::string& subdirectory,
for (std::list<std::string>::const_iterator it = preset_names.begin(); it != preset_names.end(); ++it)
{
const std::string& name = *it;
- if (name != preset_graphic_active)
- {
- combo->add(name, LLSD().with(0, name));
- }
- else
- {
- combo->add(name, LLSD().with(0, name), ADD_TOP);
- }
+ combo->add(name, LLSD().with(0, name));
}
}
else