diff --git a/indra/newview/llinventorygallery.cpp b/indra/newview/llinventorygallery.cpp
index 4838ba7a47ff3db022c70f55c48f1ba19242f2e8..62180bb066f34eb37259ba181a8e4d8a0199bb15 100644
--- a/indra/newview/llinventorygallery.cpp
+++ b/indra/newview/llinventorygallery.cpp
@@ -2390,17 +2390,11 @@ void LLInventoryGallery::startDrag()
 {
     std::vector<EDragAndDropType> types;
     uuid_vec_t ids;
-    LLToolDragAndDrop::ESource src = LLToolDragAndDrop::SOURCE_AGENT;
     for (LLUUID& selected_id : mSelectedItemIDs)
     {
         const LLInventoryItem* item = gInventory.getItem(selected_id);
         if (item)
         {
-            if (item->getPermissions().getOwner() == ALEXANDRIA_LINDEN_ID)
-            {
-                src = LLToolDragAndDrop::SOURCE_LIBRARY;
-            }
-
             EDragAndDropType type = LLViewerAssetType::lookupDragAndDropType(item->getType());
             types.push_back(type);
             ids.push_back(selected_id);
@@ -2410,11 +2404,6 @@ void LLInventoryGallery::startDrag()
         if (cat && gInventory.isObjectDescendentOf(selected_id, gInventory.getRootFolderID())
             && !LLFolderType::lookupIsProtectedType((cat)->getPreferredType()))
         {
-            if (cat->getOwnerID() == ALEXANDRIA_LINDEN_ID)
-            {
-                src = LLToolDragAndDrop::SOURCE_LIBRARY;
-            }
-
             EDragAndDropType type = LLViewerAssetType::lookupDragAndDropType(cat->getType());
             types.push_back(type);
             ids.push_back(selected_id);