diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-08-04 17:21:33 -0400 |
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-08-04 17:21:33 -0400 |
| commit | e6d5cc3bd1d678eaad7869a70b75d92772db3fc7 (patch) | |
| tree | de872df91f83b5d062d6b148f23393038d803ba1 /indra/newview/llpaneloutfitedit.cpp | |
| parent | cf58852a5eac7c99c0c2770b44e4fe64d2cc8aee (diff) | |
EXT-8283 FIX, EXT-8360 FIX - original fixes got broken, presumably during some merge
Diffstat (limited to 'indra/newview/llpaneloutfitedit.cpp')
| -rw-r--r-- | indra/newview/llpaneloutfitedit.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llpaneloutfitedit.cpp b/indra/newview/llpaneloutfitedit.cpp index c12f1fbe99..07a66eaf10 100644 --- a/indra/newview/llpaneloutfitedit.cpp +++ b/indra/newview/llpaneloutfitedit.cpp @@ -1100,7 +1100,11 @@ void LLPanelOutfitEdit::getSelectedItemsUUID(uuid_vec_t& uuid_list) void LLPanelOutfitEdit::onCOFChanged() { //the panel is only updated when is visible to a user - if (!isInVisibleChain()) return; + + // BAP - this check has to be removed because otherwise item name + // changes made when the panel is not visible will not be + // propagated to the panel. + // if (!isInVisibleChain()) return; update(); } |
