Skip to content

Commit

Permalink
triage#163 'Create folder from selected' misbehaves in marketplace
Browse files Browse the repository at this point in the history
Marketplace deliberately doesn't allow creating folders and the "New
folder from selected" is a way of creating a new folder then moving
selected items inside, therefore shouldn't be allowed.
  • Loading branch information
akleshchev committed Apr 8, 2024
1 parent 57d4237 commit e79c32e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indra/newview/llinventorybridge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ void LLInvFVBridge::getClipboardEntries(bool show_asset_id,
disabled_items.push_back(std::string("Copy"));
}

if (isAgentInventory() && !single_folder_root)
if (isAgentInventory() && !single_folder_root && !isMarketplaceListingsFolder())
{
items.push_back(std::string("New folder from selected"));
items.push_back(std::string("Subfolder Separator"));
Expand Down

0 comments on commit e79c32e

Please sign in to comment.