diff --git a/indra/newview/llmaterialeditor.cpp b/indra/newview/llmaterialeditor.cpp
index 218e2411856e81e002019970a662da44eef3dae9..7a65231a2db082db34e8286471608d39719f51e5 100644
--- a/indra/newview/llmaterialeditor.cpp
+++ b/indra/newview/llmaterialeditor.cpp
@@ -3285,7 +3285,7 @@ S32 LLMaterialEditor::saveTextures()
         work_count++;
 
         // For ease of inventory management, we prepend the material name.
-        std::string name = mMaterialName + ": " + mNormalName;
+        std::string name = mMaterialName + ": " + mMetallicRoughnessName;
 
         saveTexture(mMetallicRoughnessJ2C, name, mMetallicTextureUploadId, [key](LLUUID newAssetId, LLSD response)
         {
@@ -3328,7 +3328,7 @@ S32 LLMaterialEditor::saveTextures()
         work_count++;
 
         // For ease of inventory management, we prepend the material name.
-        std::string name = mMaterialName + ": " + mNormalName;
+        std::string name = mMaterialName + ": " + mEmissiveName;
 
         saveTexture(mEmissiveJ2C, name, mEmissiveTextureUploadId, [key](LLUUID newAssetId, LLSD response)
         {