summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Borovkov <iborovkov@productengine.com>2010-07-02 15:10:56 +0300
committerIgor Borovkov <iborovkov@productengine.com>2010-07-02 15:10:56 +0300
commit57a211a2ac9414e0e47d20ba97d56b5a978ce76a (patch)
treec89fb21e93ef655001a66a144562b2144702d318
parent9388a14e47c61cb5745494982b588a93e4f9d811 (diff)
parentc146471e93821d2e143e83d92a79f717f7cfbcff (diff)
commit
--HG-- branch : product-engine
-rw-r--r--indra/newview/llcofwearables.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llcofwearables.cpp b/indra/newview/llcofwearables.cpp
index 472d2ccf24..f278fb6a7b 100644
--- a/indra/newview/llcofwearables.cpp
+++ b/indra/newview/llcofwearables.cpp
@@ -372,6 +372,11 @@ void LLCOFWearables::refresh()
iter != iter_end; ++iter)
{
LLFlatListView* list = iter->first;
+ if (!list) continue;
+
+ //restoring selection should not fire commit callbacks
+ list->setCommitOnSelectionChange(false);
+
const values_vector_t& values = iter->second;
for (values_vector_t::const_iterator
value_it = values.begin(),
@@ -385,6 +390,8 @@ void LLCOFWearables::refresh()
list->selectItemByValue(*value_it);
}
}
+
+ list->setCommitOnSelectionChange(true);
}
}