Skip to content
Snippets Groups Projects
Commit 90f01a54 authored by Julien Finet's avatar Julien Finet
Browse files

Fix unsorted range error in vtkChartSelectionHelper::BuildSelection

This was sometimes happening in vtkChart::SELECTION_COLUMNS mode.
parent 67221cf7
No related merge requests found
......@@ -2095,6 +2095,9 @@ bool vtkChartXY::MouseButtonReleaseEvent(const vtkContextMouseEvent &mouse)
}
}
}
vtkIdType* ptrSelection =
reinterpret_cast<vtkIdType *>(accumulateSelection->GetVoidPointer(0));
std::sort(ptrSelection, ptrSelection + accumulateSelection->GetNumberOfTuples());
// Now add the accumulated selection to the old selection
vtkChartSelectionHelper::BuildSelection(this->AnnotationLink,
selectionMode,
......
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