diff options
author | Alexei Arabadji <aarabadji@productengine.com> | 2010-06-15 12:51:13 +0300 |
---|---|---|
committer | Alexei Arabadji <aarabadji@productengine.com> | 2010-06-15 12:51:13 +0300 |
commit | 11903fab735d3eb3464bdec5cf11a1027fd2ac3f (patch) | |
tree | 4224de43eec93f5fd5e60c8101c837bcf251c86e /indra | |
parent | 300cb342919b2bfa62e9c90af5cdb99afa9c962e (diff) |
EXT-7783 ADDITIONAL FIX Corerected emitting BOF changed/replaced signals in LLOutfitObserver.
Emitting COF changed shouldn't block emitting BOF changed/replaced signals.
reviewed by Mike Antipov
--HG--
branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/lloutfitobserver.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/indra/newview/lloutfitobserver.cpp b/indra/newview/lloutfitobserver.cpp index efa01bade9..03414b9964 100644 --- a/indra/newview/lloutfitobserver.cpp +++ b/indra/newview/lloutfitobserver.cpp @@ -56,12 +56,9 @@ void LLOutfitObserver::changed(U32 mask) if (!gInventory.isInventoryUsable()) return; - bool COF_changed = checkCOF(); + checkCOF(); - if (!COF_changed) - { - checkBaseOutfit(); - } + checkBaseOutfit(); } // static |