diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2025-05-19 22:30:37 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-05-19 23:05:57 +0300 |
commit | a3386f8b3aa57281c526d543461620b82896fe8f (patch) | |
tree | 0b73c6fb520789905fc5777f34b974c014fd8e92 | |
parent | 875a4180803aa6903bb13263a63e02b38552b742 (diff) |
#4102 Allow selecting gltf models on mac
-rw-r--r-- | indra/newview/llfilepicker.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llfilepicker.cpp b/indra/newview/llfilepicker.cpp index 09a2206cd7..150b5481ca 100644 --- a/indra/newview/llfilepicker.cpp +++ b/indra/newview/llfilepicker.cpp @@ -671,6 +671,8 @@ std::unique_ptr<std::vector<std::string>> LLFilePicker::navOpenFilterProc(ELoadF case FFLOAD_HDRI: allowedv->push_back("exr"); case FFLOAD_MODEL: + allowedv->push_back("gltf"); + allowedv->push_back("glb"); case FFLOAD_COLLADA: allowedv->push_back("dae"); break; |