STORM-183 ADDITIONAL FIX Disabled the "Replace Current Outfit" option of the inventory context menu for incomplete outfits.
parent
27bbf79c89
commit
8eb6c6dec8
|
|
@ -2471,6 +2471,10 @@ void LLFolderBridge::folderOptionsMenu()
|
|||
{
|
||||
disabled_items.push_back(std::string("Remove From Outfit"));
|
||||
}
|
||||
if (!LLAppearanceMgr::instance().getCanReplaceCOF(mUUID))
|
||||
{
|
||||
disabled_items.push_back(std::string("Replace Outfit"));
|
||||
}
|
||||
mItems.push_back(std::string("Outfit Separator"));
|
||||
}
|
||||
LLMenuGL* menup = dynamic_cast<LLMenuGL*>(mMenu.get());
|
||||
|
|
|
|||
Loading…
Reference in New Issue