diff options
author | Vadim Savchuk <vsavchuk@productengine.com> | 2010-08-05 15:11:27 +0300 |
---|---|---|
committer | Vadim Savchuk <vsavchuk@productengine.com> | 2010-08-05 15:11:27 +0300 |
commit | 24351260813b2d0a2e3d7e8cee78cad2c4a5cefc (patch) | |
tree | 05ace450df0d21f24d2f9816f8f64059b3044c02 /indra/newview/llpaneloutfitedit.cpp | |
parent | 7253c7eeb156f9f6cd75f52b0df856ec8ef165fb (diff) | |
parent | 057568bddc178546c112d8223042a0ed2378ab8b (diff) |
Merge from default branch
--HG--
branch : product-engine
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(); } |