diff options
| -rw-r--r-- | indra/newview/llinventorygallery.cpp | 11 | 
1 files changed, 0 insertions, 11 deletions
| diff --git a/indra/newview/llinventorygallery.cpp b/indra/newview/llinventorygallery.cpp index 4838ba7a47..62180bb066 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); | 
