diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-03-11 17:50:14 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-03-11 17:50:14 -0500 |
commit | 779844f73ac27ece4697aaca4598ded1f461c218 (patch) | |
tree | cf975bf2bc6ed0ac3a9149458d9e822cb400c69a | |
parent | 0b6760e41165a1db4f5674d1737dc273513fa64d (diff) |
For EXT-5333: Bodyparts missing from appearance and COF. Recovered wearables were failing to get added correctly due to wrong timeout logic. Reviewed by Nyx.
-rw-r--r-- | indra/newview/llappearancemgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index f686eccf37..82110f3ab7 100644 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -436,9 +436,9 @@ void LLWearableHoldingPattern::checkMissingWearables() } } + mWaitTime.reset(); if (!pollMissingWearables()) { - mWaitTime.reset(); doOnIdleRepeating(boost::bind(&LLWearableHoldingPattern::pollMissingWearables,this)); } } |