#3934 Improve picking speed on contour map

This commit is contained in:
Gaute Lindkvist
2019-01-09 09:57:47 +01:00
parent 1a5fdec2d3
commit 225f190f4b
3 changed files with 14 additions and 1 deletions

View File

@@ -382,6 +382,18 @@ void RimContourMapView::updateViewFollowingRangeFilterUpdates()
scheduleCreateDisplayModelAndRedraw();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimContourMapView::updatePickPointAndRedraw()
{
appendPickPointVisToModel();
if (m_viewer)
{
m_viewer->update();
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------