diff --git a/indra/newview/lllocalbitmaps.cpp b/indra/newview/lllocalbitmaps.cpp
index b8bde39bd105af0d6cf8991be35e821ba8250c5a..5d301748c7deb7738e6627d7e57b7d9f3badf6f9 100644
--- a/indra/newview/lllocalbitmaps.cpp
+++ b/indra/newview/lllocalbitmaps.cpp
@@ -1038,6 +1038,20 @@ LLUUID LLLocalBitmapMgr::getWorldID(LLUUID tracking_id)
 	return world_id;
 }
 
+bool LLLocalBitmapMgr::isLocalBitmap(LLUUID texture_id)
+{
+    for (local_list_iter iter = mBitmapList.begin(); iter != mBitmapList.end(); iter++)
+    {
+        LLLocalBitmap* unit = *iter;
+        if (unit->getWorldID() == texture_id)
+        {
+            return true;
+        }
+    }
+
+    return false;
+}
+
 std::string LLLocalBitmapMgr::getFilename(LLUUID tracking_id)
 {
 	std::string filename = "";
diff --git a/indra/newview/lllocalbitmaps.h b/indra/newview/lllocalbitmaps.h
index f6cc1e919e00cc8bdc82565de32c254786e3a5fa..c15ba9caa45ae4ed0e70525e375b71bde432a891 100644
--- a/indra/newview/lllocalbitmaps.h
+++ b/indra/newview/lllocalbitmaps.h
@@ -122,6 +122,8 @@ class LLLocalBitmapMgr : public LLSingleton<LLLocalBitmapMgr>
 	LLUUID       getWorldID(LLUUID tracking_id);
 	std::string  getFilename(LLUUID tracking_id);
 
+	bool         isLocalBitmap(LLUUID texture_id);
+
 	void         feedScrollList(LLScrollListCtrl* ctrl);
 	void         doUpdates();
 	void         setNeedsRebake();
diff --git a/indra/newview/llpanelface.cpp b/indra/newview/llpanelface.cpp
index e19e3f13ee4910ef89d93fd02bf988cea5d234fe..da471b0b62d39f33e92ef4365f84da9b18838b82 100644
--- a/indra/newview/llpanelface.cpp
+++ b/indra/newview/llpanelface.cpp
@@ -2923,8 +2923,15 @@ void LLPanelFace::onCopyFaces()
                     // Doesn't support local images!
                     if (id.isNull() || !LLPanelObject::canCopyTexture(id))
                     {
-                        te_data["te"].erase("imageid");
-                        te_data["te"]["imageid"] = LLUUID(gSavedSettings.getString( "DefaultObjectTexture" ));
+                        if (LLLocalBitmapMgr::getInstance()->isLocalBitmap(id))
+                        {
+                            te_data["te"]["imageid"] = id;
+                        }
+                        else
+                        {
+                            te_data["te"].erase("imageid");
+                            te_data["te"]["imageid"] = LLUUID(gSavedSettings.getString("DefaultObjectTexture"));
+                        }
                         te_data["te"]["itemfullperm"] = true;
                     }
                     else