Adjustments to MultiAttach

This commit is contained in:
Siana Gearz
2011-03-26 01:06:34 +01:00
parent 919d321d4a
commit b6b18b0693
4 changed files with 15 additions and 5 deletions

View File

@@ -7348,9 +7348,10 @@ void LLAgent::makeNewOutfit(
return;
}
BOOL fUseLinks = !gSavedSettings.getBOOL("UseInventoryLinks") &&
BOOL fUseLinks = gSavedSettings.getBOOL("UseInventoryLinks") &&
gHippoGridManager->getConnectedGrid()->isSecondLife();
BOOL fUseOutfits = gSavedSettings.getBOOL("UseOutfitFolders");
BOOL fUseOutfits = gSavedSettings.getBOOL("UseOutfitFolders") &&
gHippoGridManager->getConnectedGrid()->isSecondLife();
LLAssetType::EType typeDest = (fUseOutfits) ? LLAssetType::AT_MY_OUTFITS : LLAssetType::AT_CLOTHING;
LLAssetType::EType typeFolder = (fUseOutfits) ? LLAssetType::AT_OUTFIT : LLAssetType::AT_NONE;