diff options
author | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2025-06-27 17:18:00 -0400 |
---|---|---|
committer | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2025-06-27 17:18:00 -0400 |
commit | 6dd8a02ed1fa4c34b477a1106333c12dc7efe5cd (patch) | |
tree | 2d008a281c4c0a4d925bc6dec53e909259ddff42 /indra/newview/llmaterialeditor.cpp | |
parent | db4994734dd485eda64cccc0c05b50aff82d3914 (diff) | |
parent | 895db142ee9224e1b8e4d2fc6348dc1801bea0dc (diff) |
Merge branch 'project/gltf_mesh_import' into geenz/develop-to-gltf-mesh
Diffstat (limited to 'indra/newview/llmaterialeditor.cpp')
-rw-r--r-- | indra/newview/llmaterialeditor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llmaterialeditor.cpp b/indra/newview/llmaterialeditor.cpp index 28160177f6..378f5fdf91 100644 --- a/indra/newview/llmaterialeditor.cpp +++ b/indra/newview/llmaterialeditor.cpp @@ -137,7 +137,8 @@ LLFloaterComboOptions* LLFloaterComboOptions::showUI( { combo_picker->mComboOptions->addSimpleElement(*iter); } - combo_picker->mComboOptions->selectFirstItem(); + // select 'Bulk Upload All' option + combo_picker->mComboOptions->selectNthItem((S32)options.size() - 1); combo_picker->openFloater(LLSD(title)); combo_picker->setFocus(true); |