Make BaseGrid::UpdateMaps far less slow

This commit is contained in:
Thomas Goyne 2014-03-04 20:19:12 -08:00
parent 08c9b299b5
commit 56cbd00f4f
1 changed files with 3 additions and 3 deletions

View File

@ -301,12 +301,12 @@ void BaseGrid::UpdateMaps(bool preserve_selected_rows) {
SetSelectedSet(sel); SetSelectedSet(sel);
} }
else { else {
Selection lines; auto sorted = index_line_map;
copy(index_line_map.begin(), index_line_map.end(), inserter(lines, lines.begin())); sort(begin(sorted), end(sorted));
Selection new_sel; Selection new_sel;
// Remove lines which no longer exist from the selection // Remove lines which no longer exist from the selection
set_intersection(selection.begin(), selection.end(), set_intersection(selection.begin(), selection.end(),
lines.begin(), lines.end(), sorted.begin(), sorted.end(),
inserter(new_sel, new_sel.begin())); inserter(new_sel, new_sel.begin()));
SetSelectedSet(new_sel); SetSelectedSet(new_sel);