diff options
author | Richard Nelson <richard@lindenlab.com> | 2011-08-26 14:28:50 -0700 |
---|---|---|
committer | Richard Nelson <richard@lindenlab.com> | 2011-08-26 14:28:50 -0700 |
commit | d10a0044320ed3fb2fffd7284e8b139d82c07214 (patch) | |
tree | 62a547fec3a5e53461c3529c48d3906ee680dfd2 /indra/newview/llappearancemgr.cpp | |
parent | fea0917fbd9bde846001c00464a66e480ca1baa3 (diff) |
EXP-1162 FIX We are failing to create the Outfit links from the library initial outfits copied on first login
reviewed by Stone
Diffstat (limited to 'indra/newview/llappearancemgr.cpp')
-rw-r--r-- | indra/newview/llappearancemgr.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 1388d9aee0..a0af94ba77 100644 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -2285,7 +2285,9 @@ void LLAppearanceMgr::autopopulateOutfits() void LLAppearanceMgr::onFirstFullyVisible() { gAgentAvatarp->debugAvatarVisible(); - autopopulateOutfits(); + // The auto-populate is failing at the point of generating outfits
+ // folders, so don't do the library copy until that is resolved.
+ // autopopulateOutfits(); } bool LLAppearanceMgr::updateBaseOutfit() |