diff --git a/indra/llprimitive/llgltfmaterial.cpp b/indra/llprimitive/llgltfmaterial.cpp
index e8e4b62934d79916d3430664cd88919d0cf0cf38..c98fd7d1ee5393c243263923f4838f9b273ea789 100644
--- a/indra/llprimitive/llgltfmaterial.cpp
+++ b/indra/llprimitive/llgltfmaterial.cpp
@@ -646,11 +646,6 @@ void LLGLTFMaterial::applyOverride(const LLGLTFMaterial& override_mat)
             mTextureTransform[i].mScale = override_mat.mTextureTransform[i].mScale;
         }
 
-        if (override_mat.mTextureTransform[i].mScale != getDefaultTextureScale())
-        {
-            mTextureTransform[i].mScale = override_mat.mTextureTransform[i].mScale;
-        }
-
         if (override_mat.mTextureTransform[i].mRotation != getDefaultTextureRotation())
         {
             mTextureTransform[i].mRotation = override_mat.mTextureTransform[i].mRotation;
diff --git a/indra/newview/llfilepicker.cpp b/indra/newview/llfilepicker.cpp
index 1ec25ccaa18b794106cfb135985f3b2e1245bc88..39bac89864968615feceb76c6d12f8e10ef8d485 100644
--- a/indra/newview/llfilepicker.cpp
+++ b/indra/newview/llfilepicker.cpp
@@ -608,6 +608,8 @@ std::vector<std::string>* LLFilePicker::navOpenFilterProc(ELoadFilter filter) //
             allowedv->push_back("dic");
             allowedv->push_back("xcu");
             allowedv->push_back("gif");
+            allowedv->push_back("gltf");
+            allowedv->push_back("glb");
         case FFLOAD_IMAGE:
             allowedv->push_back("jpg");
             allowedv->push_back("jpeg");