Skip to content
Snippets Groups Projects
Commit 57a211a2 authored by Igor Borovkov's avatar Igor Borovkov
Browse files

commit

--HG--
branch : product-engine
parents 9388a14e c146471e
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment